Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.

Alteryx Designer Desktop Discussions

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

In excel file i want to create new calculated column "Y/N "and create new excel for "Y"

AnkitDwivedi6
7 - Meteor

to calculate new column and filter and publish "Y" data it in new excel.

 

Col 1Col 2Col 3Col 4Calculated column
155547if(abs(5)>abs(0.5*55),"Y","N")
265285if(abs(6)>abs(0.5*52),"Y","N")
335469if(abs(3)>abs(0.5*54),"Y","N")
465296if(abs(6)>abs(0.5*52),"Y","N")
2 REPLIES 2
Emil_Kos
17 - Castor
17 - Castor

Hi @AnkitDwivedi6,

 

Please find the workflow attached. The workflow will not produce output as a result of all the formulas is equal to false. 

 

Emil_Kos_0-1610391453616.png

 

pedrodrfaria
13 - Pulsar

Hi @AnkitDwivedi6 

 

Here is an example where based on the logic of if(abs(Column 2)>abs(0.5*Column 4),"Y","N"). We create these fields to be populated with the Y or N.

pedrodrfaria_0-1610392866197.png

 

Pedro.

Labels