Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
rafaelfernandes
New Member

How to create a column with Accumulated Value from previous column?

Hello there,

 

I'm trying to create a column that shows the accumulated value from the previous column (in this case in %).

 

Then after this I want to classify, in another column, each row that has an accumulated value <= 80% as A, 80 to 95% as B, 95% a 99% as C and 99% to 100% as D.

 

accumulated value.png

So the new column should have the first value as 1,47%, the second should be 1,47%+1,47%, the third should be 2,94%+1,26%, the fourth should be 4,2%+1,16% following this sequence.

 

Then after this column, atteribute the classification A,B,C and D as I explained above in a new column

 

Is this possible to compute in powerBI?

 

Thank you for all the possible help!

1 ACCEPTED SOLUTION
Johanno
Responsive Resident
Responsive Resident

You could:

1. Add an index column i Power Query (1, 2, 3 etc)

Capture.JPG

2. Get the cumulative sum by: 

Cumulative = CALCULATE(SUM('Table'[Percentage]);FILTER('Table';'Table'[Index]<=EARLIER('Table'[Index])))

3. Then classification with nested ifs:

Classicifation = IF('Table'[Cumulative]<=80;"A";IF('Table'[Cumulative]<=95;"B";IF('Table'[Cumulative]<99;"C";"D")))

View solution in original post

1 REPLY 1
Johanno
Responsive Resident
Responsive Resident

You could:

1. Add an index column i Power Query (1, 2, 3 etc)

Capture.JPG

2. Get the cumulative sum by: 

Cumulative = CALCULATE(SUM('Table'[Percentage]);FILTER('Table';'Table'[Index]<=EARLIER('Table'[Index])))

3. Then classification with nested ifs:

Classicifation = IF('Table'[Cumulative]<=80;"A";IF('Table'[Cumulative]<=95;"B";IF('Table'[Cumulative]<99;"C";"D")))

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Fabric Monthly Update - May 2024

Check out the May 2024 Fabric update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.