Conditional Format of field based on a field

marianmalone

New member
Local time
Today, 03:43
Joined
Feb 11, 2021
Messages
4
I am trying to get the PBirthday field to highlight if the PFirst IsNotNull
PBirthday is a date field. I can get it to highlight on its own but having trouble getting it to highlight based on the value of the other field. Any ideas? Please? I tried the formula on the bottom but it did not work. No error but no results either whether I put True or False


Conditional Formatting Not working.jpg


Marian
 
Use Expression Is and :

[PFirst] Is Not Null AND Not IsDate([PBirthday])
 
I got it to work with this formula

(False=IsNull([SFirst])) And (True=IsNull([SBirthday]))

But I want to try yours as well. I am really getting into this formula stuff. thanks PBaldy!

Marian
 
Happy to help Marian! The "False=..." and "True=..." is an unusual approach.
 

Users who are viewing this thread

Back
Top Bottom