I have a report that is based on a query. on that report is a subreport based on a query. I need to take the (10) resulting fields from the subreport and change the colors based on thier numerical value. With the code below it changes all the fields of the subreport. How do i isolate only certain fields?
If [CumPct].Value < 0.12 Then
[CumPct].BackColor = vbRed
End If
Thanks,
If [CumPct].Value < 0.12 Then
[CumPct].BackColor = vbRed
End If
Thanks,