I have a report with 4 subreportes, I need access code to the fields or data of column of the subreports for changing the number format of the some fields that meet certain conditions, how do I do it?
I tried the following code, but only access to a field or data of a single row of each subreporte and subreportes have several rows.
For Each fld As Field In C1Report1.Fields
Dim sr As C1Report = fld.Subreport
MsgBox(sr.Sections.Detail.Fields.Item(
"FamiliaCtl").Value)
Next