Alteryx Designer Desktop Discussions

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

Getting formula for desired format output

Kiara16
6 - Meteoroid

Can someone tell how to get iferror formula or what we can use to achieve this output sheet

from the Data sheet

4 REPLIES 4
ChrisTX
15 - Aurora

Try a Summarize tool with Action = Sum

 

But if your Subordinate Id column is a Numeric data type, and you want the word "Total" in that column, you'll need to change it to a String data type.   (use a Select tool)

 

Chris

Kiara16
6 - Meteoroid

And what about the % column? To show like an output sheet

ChrisTX
15 - Aurora

Use a Formula tool

 

Create new field "My Percentage".  Data type FixedDecimal 19.2

 

IF [April] = 0 or IsEmpty([April])

THEN 0            or THEN Null()

ELSE [May 2023] / [April]

ENDIF

 

Chris

Kishori
6 - Meteoroid

Check the attached flow for the answer to the above question.

Labels