Important Community update: The process for changing your account details was updated on June 25th. Learn how this impacts your Community experience and the actions we suggest you take to secure your account here.

Alteryx Designer Desktop Discussions

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

MAKE ALL VALUES IN THE ROW ZERO IF A CONDITION IS SATISFIED

Shahas
8 - Asteroid

Hi All,

 

Need a small help.

 

In the data, say i have columns A-H and rows 1-8.

 

If, say, value in F6 < 1000, then all the data in row 6 need to be changed to 0.

 

Thanks in advance

2 REPLIES 2
DataNath
17 - Castor

Hey @Shahas, you could handle this with a Multi-Field Formula like so. If you want to do this based on the value of a different cell then you just need to change where I have [F] = and [RecordID] = 6 to be your column and row of interest:

 

F6 = 1001, no change:

 

DataNath_0-1678988504360.png

DataNath_1-1678988510877.png

 

F6 = 500, whole of row 6 made 0:

 

DataNath_2-1678988549804.pngDataNath_3-1678988559062.png

 

Hope this helps!

Shahas
8 - Asteroid

Thanks @DataNath . It worked. 

Labels