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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
InsightSeeker
Helper III
Helper III

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
Super User
Super User

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.