Skip to main content

(solved) Easy IF formula to identify blank fields

  • February 11, 2019
  • 4 replies
  • 27 views

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!

This topic has been closed for replies.

4 replies

Forum|alt.badge.img+17

IF(AND(1,2,3), 'Team').

Of course change the 1,2,3 to your actual field names.


  • Author
  • New Participant
  • February 11, 2019

IF(AND(1,2,3), 'Team').

Of course change the 1,2,3 to your actual field names.


no blank() check required? I’ll try …


Forum|alt.badge.img+17

no blank() check required? I’ll try …


Checking 3 not blank fields is the same as checking the 3 exist.


  • Author
  • New Participant
  • February 11, 2019

Checking 3 not blank fields is the same as checking the 3 exist.


Works great … lesson learned. Thanks so much!