Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

Formula Not Equal To in combination with Linked Field

Topic Labels: Formulas
2863 2
cancel
Showing results for 
Search instead for 
Did you mean: 

Hi all,

When I try to use the formula If({LINKED FIELD} !=BLANK(),Duration,BLANK())

Explanation: the duration of a certain activity is put in a seperate (new) column. It only will fill if the LINKED FIELD is empty.

For some reason it just doesn’t work. the != combination seems to be ignored. The duration is filled regardless of the content of the LINKED FIELD. What am I doing wrong?

Regards,
André

2 Replies 2

Checking to see if a field is blank is actually much easier than you might think. This should work:

IF({LINKED FIELD}, Duration)

Putting the field name on its own checks to see if that field contains anything. If so, the condition is considered to be true. However, in your comment you said:

…which is the opposite of how you tried to structure your formula. If you truly want the duration to appear if {LINKED FIELD} is empty, use this:

IF(NOT({LINKED FIELD}), Duration)

Also, the last part of the IF() function is optional. If omitted (as I did in my examples), Airtable automatically inserts the appropriate equivalent of BLANK(), so putting BLANK() there explicitly is unnecessary.

Hi Justin,

That’s good information man! I really appreciate this. Thank you.
André