Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask 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