Feb 11, 2019 10:20 AM
This should be an easy one for you experts :frowning:
I try to write a formula for the following case:
I want to write the Value “Team” in a Field1 IF Field2 And Field3 And Field4 are not empty!
PLEASE help me!
Feb 11, 2019 10:35 AM
IF(AND(1,2,3), 'Team')
.
Of course change the 1,2,3
to your actual field names.
Feb 11, 2019 10:38 AM
no blank() check required? I’ll try …
Feb 11, 2019 10:39 AM
Checking 3 not blank fields is the same as checking the 3 exist.
Feb 11, 2019 10:40 AM
Works great … lesson learned. Thanks so much!