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

Need a measure for table visual

I need a measure that will show the percentage for only "Hit" and "Missed" and then blank or 0 will show for "No deadline set". 

The computation for Hit should be Request Completed divided by Sum of Hit and Missed (2318 / 2524 =  0.92). Same with Missed it should be (206 / 2524 = 0.08).

 

 

Target = column

Request Completed = COUNTROWS(CustomerUpdates)

 

 

 

TCU.PNG

 

Hope this is possible.

Thanks in advance!

 

 

1 ACCEPTED SOLUTION
Interkoubess
Solution Sage
Solution Sage

Hi @chesterraepined,

 

Please try this measure with my table called Table1:

Measure  = if(SELECTEDVALUE(Table1[target])="No deadline set", 0,DIVIDE(SUM(Table1[Requested Completed]),CALCULATE(SUM(Table1[Requested Completed]), Table1[target] in {"Hit","Missed"}),BLANK()))

 

Hope it helps but experts can find more elaborate formula for you.

 

 

Ninter 

View solution in original post

2 REPLIES 2
Interkoubess
Solution Sage
Solution Sage

Hi @chesterraepined,

 

Please try this measure with my table called Table1:

Measure  = if(SELECTEDVALUE(Table1[target])="No deadline set", 0,DIVIDE(SUM(Table1[Requested Completed]),CALCULATE(SUM(Table1[Requested Completed]), Table1[target] in {"Hit","Missed"}),BLANK()))

 

Hope it helps but experts can find more elaborate formula for you.

 

 

Ninter 

Hi @Interkoubess thanks for the reply.

The measure seems fine but the total is somehow different. The total 5708 was also divided to the sum of Hit and Missed (5708 / 2524 = 226.15%) . The Total should only be 100%

 

 

TCU 1.PNG

 

 

 

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.

Top Solution Authors