Alteryx Designer Desktop Discussions

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

NeedHelp

Pinky
8 - Asteroid

Hi,

 

I need to remove or ignore the numbers where their each first and last condition is true for each number.If you see my below data 'BBB' and 'DDD' numbers first and last condition is true. Can anyone help on this?

NumberCondition
AAATRUE
AAATRUE
AAAFALSE
BBBTRUE
BBBTRUE
CCCTRUE
CCCTRUE
CCCFALSE
DDDTRUE
DDDTRUE
5 REPLIES 5
ivoller
12 - Quasar

See attached.

 

Summarize to get first and last, filter and then join back to original data set.

 

 

LordNeilLord
15 - Aurora

Hey @Pinky

 

Summarize tool for the win

 

FirstLast.PNG@LordNeilLord

Part time Tableau, Part Time Alteryx. Full Time Awesome


Data Lover

Pinky
8 - Asteroid

Thanks for your response!

 

I almost got it. I still have small question here.

 

I am using this condition [First_Condition]==[Last_Condition].I want only both first and last condition is TRUE. There are some first and last condition is 'False'.Those numbers are converting into 'TRUE' if i use the formula [First_Condition]==[Last_Condition].

 

I need to ignore only [First_Condition]==[Last_Condition] ==''TRUE". Is there any way to implement this?

 

 

LordNeilLord
15 - Aurora
Hey @Pinky

Try:

[First_Condition]= "TRUE" && [Last_Condition] ="TRUE"

Neil

ivoller
12 - Quasar

 Maybe [First]=="TRUE" && [Last]=="TRUE"

Labels