Report: Changing the colour of a control depending on its value.
Hi,
I have a report based on a query. I want to change the colour of the controls background depending on its value. Here is a sample of the query:
Venue - Rejected
London - 1.00
Glasgow - 1.50
Bristol - 2.10
Anything above 2.00 should have a red background.
Can I do something like :
If me.Rejected.value => 2.00 then
me.Rejected.BackgroundColour = 'Red'
End if
Do Access Reports support these methods?
Hi,
I have a report based on a query. I want to change the colour of the controls background depending on its value. Here is a sample of the query:
Venue - Rejected
London - 1.00
Glasgow - 1.50
Bristol - 2.10
Anything above 2.00 should have a red background.
Can I do something like :
If me.Rejected.value => 2.00 then
me.Rejected.BackgroundColour = 'Red'
End if
Do Access Reports support these methods?