Hi All,
Good day. I have a report which display the list of values (say 10 fields) from the basic SELECT * FROM table query.
I need to dynamically set the BOLD based on the particular value for the fifth field which was assigned from Query. if it doesn't match it should display normal.
E.g
I tried the aforementioned code and it dont work. ALso i tried achieve it using below listed options.
But nothing worked. Kindly assist me.
Good day. I have a report which display the list of values (say 10 fields) from the basic SELECT * FROM table query.
I need to dynamically set the BOLD based on the particular value for the fifth field which was assigned from Query. if it doesn't match it should display normal.
E.g
Code:
If Field_5 = "Agent" then Field_5.FontBold = True Else Field_5.FontBold = False End if
Code:
Me.Field_5.FontBold = True
Field_5.Properties("fontweight") = 700
Comment