Hi Team,
Hope you are well. I need help in creating the calculated field based on the certain conditions.
1) Current Status (Column N) in the below snapshot.
Formula -> IF([@[June Count Full Access %]]<5%,"BELOW THRESHOLD","ABOVE THRESHOLD")
2) Average Status (Column O) in the below snapshot,
Formula -> IF(N2="BELOW THRESHOLD", "STABLE", IF(M2>10%, "FLAG", "STABLE"))
3) KRI weight (Column P) in the below snapshot,
Formula - > [@[Current Status]]&" "&[@[Average Status]]
Please find attached the snapshot of the data and
Thank you for the support,
Regards
Sri
Solved! Go to Solution.
1) Current Status (Column N) in the below snapshot.
Formula -> IF [June Count Full Access %]< 5% then "BELOW THRESHOLD" else "ABOVE THRESHOLD" endif
2) Average Status (Column O) in the below snapshot,
Formula -> IF N2 ="BELOW THRESHOLD" then "STABLE" else IF M2 >10% then "FLAG" else "STABLE" endif endif
3) KRI weight (Column P) in the below snapshot,
Formula - > [Current Status]] + " " + [Average Status]
Thank you @binay2448 . Very helpful. one question please how can we show % next to a number in alteryx in a if else statement
thanks
@binay2448 Thank you. The second conditions doesn't seem to work correctly. Can you please let me know if this is correct?
2) Average Status (Column O) in the below snapshot,
Formula -> IF N2 ="BELOW THRESHOLD" then "STABLE" else IF M2 >10% then "FLAG" else "STABLE" endif endif
Actual results is
When i run the below formula it results in all of them "Flag"
IF [Current Status] ="BELOW THRESHOLD"
then "STABLE"
else IF [Average Full Access %] > "10%"
then "FLAG" else "STABLE" endif endif
Please let me know your thoughts,
thanks
Hi @sriniprad08
try this
IF [Current Status] ="BELOW THRESHOLD"
then "STABLE"
else IF [Average Full Access %] > 10
then "FLAG" else "STABLE" endif endif
Hi @sriniprad08
Can you provide some sample input and expected output it will help us get a better understanding of the usecase.
User | Count |
---|---|
107 | |
82 | |
70 | |
54 | |
40 |