I have set up some simple vba coding on open of my report. It looks like this:
LSCNO.BackColor = IIf (IsNull(COMPLETION_DATE), 1677215, 12632256)
CUSTOMER.BackColor = IIf (IsNull(COMPLETION_DATE), 1677215, 1232256)
I want the 2 fields LSCNO and CUSTOMER to have a white background if the field COMPLETION DATE doesn't have a date, but have a gray background if there is a COMPLETION DATE. With this coding, every job is getting shaded whether there's a COMPLETION DATE or not.
LSCNO.BackColor = IIf (IsNull(COMPLETION_DATE), 1677215, 12632256)
CUSTOMER.BackColor = IIf (IsNull(COMPLETION_DATE), 1677215, 1232256)
I want the 2 fields LSCNO and CUSTOMER to have a white background if the field COMPLETION DATE doesn't have a date, but have a gray background if there is a COMPLETION DATE. With this coding, every job is getting shaded whether there's a COMPLETION DATE or not.