Hello,
I am currently working on an access based application where I need to change the color of some specific rows of a form (the color of "one" field per row needs to be changed) based on values stored in these fields. For instance, when we open the form, we need to see color green in the field of a certain row where we have the value 1. If the value of this field is 2, we need to see color orange and if it is 3 it is red.
Example of the output of the form
------------------------------------
ID | Criteria
201 | 1 --> the cell containing 1 should be colored in green
203 | 3 --> the cell containing 3 should be colored in red
204 | 3
205 | --> the cell that contains nothing should be kept uncolored
206 | 1
207 | 2
Note: the values (1, 2 and 3) are already available when the form opens and they are also stored in a table.
Thank you for your help!
I am currently working on an access based application where I need to change the color of some specific rows of a form (the color of "one" field per row needs to be changed) based on values stored in these fields. For instance, when we open the form, we need to see color green in the field of a certain row where we have the value 1. If the value of this field is 2, we need to see color orange and if it is 3 it is red.
Example of the output of the form
------------------------------------
ID | Criteria
201 | 1 --> the cell containing 1 should be colored in green
203 | 3 --> the cell containing 3 should be colored in red
204 | 3
205 | --> the cell that contains nothing should be kept uncolored
206 | 1
207 | 2
Note: the values (1, 2 and 3) are already available when the form opens and they are also stored in a table.
Thank you for your help!
Comment