- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Calculate percentage
Dear Team;
I would like to request your support.
How can i calculate the percentage? (Dax). In case I have the tables (1srt one OR second one) below :
Thank you
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@dofrancis3 , Update measure as
Proud to be a Super User! |
|
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Assuming you want to calculate the percentage of cases based on Gender in the first table:
Create measures:
Total Cases = SUM('YourTableName'[Case])
Total Cases Female =
CALCULATE (
[Total Cases],
'YourTableName'[Gender] = "F"
)
Total Cases Male =
CALCULATE (
[Total Cases],
'YourTableName'[Gender] = "M"
)
Percentage Female =
DIVIDE (
[Total Cases Female],
[Total Cases],
0
)
Percentage Male =
DIVIDE (
[Total Cases Male],
[Total Cases],
0
)
💌 If this helped, a Kudos 👍 or Solution mark would be great! 🎉
Cheers,
Kedar
Connect on LinkedIn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Dear @Kedar_Pande Thank you for your replay but i would like to calculate only the percentage of total cases
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@dofrancis3 , Try creating a measure like
Proud to be a Super User! |
|
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Dear @bhanu_gautam Thank you but note that this is a Mesure it's not a column.
So, please how to calculate a percentage in case Total is a mesure
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@dofrancis3 , Update measure as
Proud to be a Super User! |
|

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
09-04-2024 02:21 AM | |||
01-21-2025 09:20 AM | |||
01-17-2025 02:12 PM | |||
05-08-2024 01:23 AM | |||
01-15-2024 06:45 AM |
User | Count |
---|---|
19 | |
13 | |
11 | |
10 | |
7 |