Help

Is one of many fields empty

Solved
Jump to Solution
718 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Maarten_VandenH
4 - Data Explorer
4 - Data Explorer

Hi All, very new to this and looking for some help. I’m looking to quickly see if a briefing has been completed or if any fields have been left empty (to then later report on this).

Example I have 5 fields, if one of these fields is empty I want the output to be “incomplete”.

I have been trying with this: IF({Message Name}=BLANK(),“Incomplete”,“Complete”) but this only works for me with one field. Any way I can check multiple fields to see if one of them is empty?

1 Solution

Accepted Solutions
Nick_Dennis
7 - App Architect
7 - App Architect

Hi @Maarten_VandenHeuvel,
You should be able to accomplish this by wrapping the arguments in an OR() statement:
IF(OR({Field 1} = BLANK(), {Field 2} = BLANK(), {Field 3} = BLANK(), {Field 4} = BLANK()), "Incomplete", "Complete")

Hope that helps.

See Solution in Thread

2 Replies 2
Nick_Dennis
7 - App Architect
7 - App Architect

Hi @Maarten_VandenHeuvel,
You should be able to accomplish this by wrapping the arguments in an OR() statement:
IF(OR({Field 1} = BLANK(), {Field 2} = BLANK(), {Field 3} = BLANK(), {Field 4} = BLANK()), "Incomplete", "Complete")

Hope that helps.

@Nick_Dennis exactly what I needed! Thank you sir!