Good Morning,
I have 2 controls [Item] and [PCno], I want [Item]'s font to be shown bold if [PCno]'s value is null.
I tried this;
If (Me.PCno = "") Then
Me.Item.FontBold = True
Else
Me.Item.FontBold = False
End If
but nothing happens.
Kindly help.![]()