We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

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
7 - Meteor

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
16 - Nebula
16 - Nebula

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
7 - Meteor

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

ChrisTX
16 - Nebula
16 - Nebula

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
8 - Asteroid

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

Labels
Top Solution Authors