SOLVED
cumulative % calculation
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Daniel123
6 - Meteoroid
‎04-01-2024
06:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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)
Solved! Go to Solution.
Labels:
- Labels:
- Preparation
4 REPLIES 4
cjaneczko
13 - Pulsar
‎04-01-2024
06:54 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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
‎04-01-2024
07:09 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@Daniel123 - See attached workflow.
abbes_omar_87
5 - Atom
‎04-01-2024
07:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
‎04-01-2024
07:52 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
thanks, both RunningTotal and MultiRow formula works for me.
