Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
If you had three columns that only have certain values but they only appear once in the three columns. Can you Nest the Three Columns into One Output Column that has True or False Logic in it in this way
Column 1 + Column 2 + Column 3.equals("Do Not Call")?"True" : "False"
or would you have to seperate each IF THEN ELSE Statement for each column with ":"
Column 1.equals("Do Not Call")?"True" : "False" : Column 2.equals("Do Not Call")?"True" : "False" : Column 3.equals("Do Not Call")?"True" : "False"
Was just curious what the proper syntax is for this specific Logic
Let me know
Thanks,
Andrew
Hi,
if I understand correct the logic, it is:
Column 1.equals("Do Not Call")&&Column 2.equals("Do Not Call")&&Column 3.equals("Do Not Call")?"True":"False"