- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Percentage calculation values
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-08-2018 12:44 AM
I am calculating percentage of product values as below.
Prod % Value
A 5%
B 4%
C 10%
D 8%
E 9%
F 3%
G 11%
H 16%
I 18%
other 12%
But when I do Top 5 or exclude other, the percentage values shouldn't change, not sure how to get it done.
%Value is calculated as sum(value)/Total(Value)
Any thought.
Thanks,
Solved! Go to Solution.
Accepted Solutions
Re: Percentage calculation values
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-09-2018 12:11 AM
Have a look at the attached pbix file which shows the Top 5 applied on average.
If this helped you, please mark this post as an accepted solution and like to give KUDOS .
Regards,
Affan
Re: Percentage calculation values
[ Edited ]- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-09-2018 04:29 AM - edited 12-09-2018 04:35 AM
Add a filter if you want to exclude product D
Percentage = SUM ( Table[value] ) / CALCULATE ( SUM ( Table[Value] ), All(Table[Prod]), FILTER('Table' , Table[Prod] <> "D") )
All Replies
Re: Percentage calculation values
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-08-2018 01:55 AM
Hi @Thimma
Can you elaborate a bit more?
Is what you're showing a matrix with Prod on rows and %Value (measure) in values?
What do you mean exactly by "when I do Top 5 or exclude other" ?
Re: Percentage calculation values
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-08-2018 08:48 AM
Thanks AIB for the response, basically above %values shouldn't change when we do Top 5 in filter section or excluing any other Prod lov's.
Any idea.
Re: Percentage calculation values
[ Edited ]- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-08-2018 01:45 PM - edited 12-08-2018 01:59 PM
Hi @Thimma
You can acheive this by using ALL() in your measure.
It will be easier to help if you can show some sample data table from which you are creating this report.
It is better to explain the issue like below example.
"My problem is to get the id number separated from a column which shows the data as below."
My actual data is in a column as below
Column1 |
Hello12Monday |
Hello14Tuesday |
The reuslt I need should be
Column1 | ID No |
Hello12Monday | 12 |
Hello14Tuesday | 14 |
This way you can explanin the issue clearly and instead of pasting the screenshots in the question please consider copying the excel table.
I hope this will lead solving the issue fast.
Regards
Affan
Re: Percentage calculation values
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-09-2018 12:11 AM
Have a look at the attached pbix file which shows the Top 5 applied on average.
If this helped you, please mark this post as an accepted solution and like to give KUDOS .
Regards,
Affan
Re: Percentage calculation values
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-09-2018 01:01 AM
A formual like the following may help you.
Percentage = SUM ( Table[value] ) / CALCULATE ( SUM ( Table[Value] ), ALL ( Table[Prod] ) )
Re: Percentage calculation values
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-09-2018 02:01 AM
Thanks for the reply, but how to restrict the product D in grand total.
Thanks,
Re: Percentage calculation values
[ Edited ]- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-09-2018 04:29 AM - edited 12-09-2018 04:35 AM
Add a filter if you want to exclude product D
Percentage = SUM ( Table[value] ) / CALCULATE ( SUM ( Table[Value] ), All(Table[Prod]), FILTER('Table' , Table[Prod] <> "D") )
Re: Percentage calculation values
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-10-2018 12:15 PM
The formula works well, but when I do Top 2 records my percentage values are changing. but in the example it works well, but in real data is getting changed a lot. not sure why??
Re: Percentage calculation values
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-10-2018 11:06 PM
You should use SUMX and Values.
Try the following formula:
Percentage = SUMX ( VALUES( Table[Prod] ), CALCULATE ( SUM ( Table[value] ) ) ) / SUMX ( VALUES( Table[Prod] ), CALCULATE ( SUM ( Table[Value] ), All(Table[Prod]), FILTER('Table' , Table[Prod] <> "D") ) )