Forum Discussion
How to create accumulate % for 8020 Table ?
- 5 years ago
Hi Anonymous ,
Try this:
1. Add an index column in Power Query Editor.
2. Create measures or columns.
- Measures:
ACC TOTAL Measure = CALCULATE ( SUM ( 'Table (2)'[SALES] ), FILTER ( ALLSELECTED ( 'Table (2)' ), 'Table (2)'[Index] <= MAX ( 'Table (2)'[Index] ) ) )ACC PER CENT Measure = VAR Sum_ = CALCULATE ( SUM ( 'Table (2)'[SALES] ), ALLSELECTED ( 'Table (2)' ) ) RETURN DIVIDE ( [ACC TOTAL Measure], Sum_, 0 )- Columns:
ACC TOTAL Column = CALCULATE ( SUM ( 'Table (2)'[SALES] ), FILTER ( ALLSELECTED ( 'Table (2)' ), 'Table (2)'[Index] <= EARLIER( 'Table (2)'[Index] ) ) )ACC PER CENT Column = VAR Sum_ = SUM ( 'Table (2)'[SALES] ) RETURN DIVIDE ( [ACC TOTAL Column], Sum_, 0 )Best regards
Icey
If this post helps,then consider Accepting it as the solution to help other members find it faster.
Hi Amit
For my actual raw data , only have field name = SALES , still dont have ACC TOTAL.
https://www.dropbox.com/s/v2eypdrj51k4yvd/8020%20V001.pbix?dl=0
Anonymous , Try like
divide(Sum(Table[Acc Total]), calculate(sum(Table[Sales]), all(Table)))
- Anonymous5 years agoNot applicable
Hi Amit
In my aactual data , i still dont have Acc Total field :-
divide(Sum(Table[Acc Total]), calculate(sum(Table[Sales]), all(Table)))
Paul
- amitchandak5 years ago
Super User
Please find the file.
- Anonymous5 years agoNot applicable
Hi Amit
Very sorry for send my sample file with extra field , below is only 2 field in my PBI file :-
kindly open my below actual raw data file :-
https://www.dropbox.com/s/48v9ajfgormrk6c/8020%20V001a.pbix?dl=0
and hope that you can help me get the accumulated %
meaning you need 2 expression , first to get the ACC Total field , then get the % field.
Paul