Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
Start Free Trial

Alteryx Designer Desktop Discussions

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

cumulative % calculation

Daniel123
6 - Meteoroid

hi, maybe is simple but somehow can't figure it out. I need to calculate cumulative % from each day as a sum of all previous days.

Example : I have 7 days and each day I get some % of conversion:

Mon 1%.

Tue 2%,

Wed 2%,

Thu 4%,

Fri 15%,

Sat 40%

Sun 30%.

In total 100%.

 

I need a result table with columns for each day and row with cumulative value

Mon 1%,

Tue 3% (1%+2%)

Wed 5% (1+2+2)

Thu 15% (1+2+2+10)

Fri 30% (1+2+2+10+15)

Sat 70% (1+2+2+10+15+40)

Sun 100% (1+2+2+10+15+40+30)

4 REPLIES 4
cjaneczko
13 - Pulsar

One way to do it is to transpose the data then use a multi row formula to add the prior rows value. Then Cross tab the results back. 

usmanbashir
11 - Bolide

@Daniel123 - See attached workflow.

abbes_omar_87
5 - Atom

Hello, 

You can use the transpose tool and the running total tool. 

See attached workflow using this tool.

 

Regards,

Daniel123
6 - Meteoroid

thanks, both RunningTotal and MultiRow formula works for me.

Labels
Top Solution Authors