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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
InsightSeeker
Helper I
Helper I

Measure %

How can i create a measure to get the result as shown in the below table? I don't want to use show value as % of grand total.

 

Table

Mode
Online
Offline
Online
Online
Online
Offline
Offline
Offline
Offline
Offline

 

Result

ModeCount
Online4
Offline6
  
ModePercentage
Online40%
Offline60%
2 ACCEPTED SOLUTIONS
Kishore_KVN
Super User
Super User

Hello @InsightSeeker ,

You have to create a measure for the same as below:

Percentage Contribution = 
Var A = COUNTA('Table'[Mode])
Var B = CALCULATE(COUNTA('Table'[Mode]),ALL('Table'))
Return
DIVIDE(A,B,0)

Output looks like this:

Kishore_KVN_0-1713446267975.png

If this post helps, then please consider accepting it as the solution to help other members find it more quickly. Thank You!!

 

 

View solution in original post

PhilipTreacy
Super User
Super User

Hi @InsightSeeker 

 

To get the % of Offline/Online use this

 

% = DIVIDE(CALCULATE(COUNTROWS('DataTable'), 'DataTable'[Mode] = SELECTEDVALUE('DataTable'[Mode])), CALCULATE(COUNTROWS(ALL('DataTable'))))

 

offon.png

 

Regards

 

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


View solution in original post

4 REPLIES 4
PhilipTreacy
Super User
Super User

Hi @InsightSeeker 

 

To get the % of Offline/Online use this

 

% = DIVIDE(CALCULATE(COUNTROWS('DataTable'), 'DataTable'[Mode] = SELECTEDVALUE('DataTable'[Mode])), CALCULATE(COUNTROWS(ALL('DataTable'))))

 

offon.png

 

Regards

 

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


Kishore_KVN
Super User
Super User

Hello @InsightSeeker ,

You have to create a measure for the same as below:

Percentage Contribution = 
Var A = COUNTA('Table'[Mode])
Var B = CALCULATE(COUNTA('Table'[Mode]),ALL('Table'))
Return
DIVIDE(A,B,0)

Output looks like this:

Kishore_KVN_0-1713446267975.png

If this post helps, then please consider accepting it as the solution to help other members find it more quickly. Thank You!!

 

 

Attached PBIX for reference. 

samratpbi
Resolver V
Resolver V

Hi, you can create a measure to count rows for each mode.

Cnt = COUNTROWS(tablename)
Below is the output:
samratpbi_0-1713446170435.png

In the table, the mode column & the cnt measure used.

 

If this resolves your problem, then please mark it as solution, Thanks!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.