We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

If column 1, 2, 3 are !null then Text else ""

wonka1234
10 - Fireball

Hi,

 

I am having trouble with my formula:

 

If !IsNull([Test One] Or [Test Two] Or [Test Three]) then "Field is Blank" Else "" Endif

 

results:

 

wonka1234_0-1670006210577.png

wonka1234_1-1670006224276.png

 

 

How come my comment is always showing? shouldnt it be blank for  row 5?

 

1 REPLY 1
Felipe_Ribeir0
16 - Nebula

Hi @wonka1234 

 

Try this formula: If !IsNull([Test One]) Or !IsNull([Test Two]) Or !IsNull([Test Three]) then "Field is Blank" Else "" Endif

Labels
Top Solution Authors