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
Anonymous
Not applicable

Summarise data in two columns

I have two columns in my raw dataset which contain the values "On Time" or "Not on Time" and only one of the two columns is populated at any given time. See below example.

 

I want a measure that counts the "On Time" and "Not on Time" from both columns. 

 

DataData

1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @Anonymous

 

Try these two measures in for instance Card visuals:

 

 

NumberOfOnTime =
CALCULATE ( COUNT ( Table1[14 Day SLA] ), Table1[14 Day SLA] = "On Time" )
    + CALCULATE ( COUNT ( Table1[21 Day SLA] ), Table1[21 Day SLA] = "On Time" )

 

NumberOfNotOnTime =
CALCULATE ( COUNT ( Table1[14 Day SLA] ), Table1[14 Day SLA] = "Not On Time" )
    + CALCULATE ( COUNT ( Table1[21 Day SLA] ), Table1[21 Day SLA] = "Not On Time" )

 

Code formatted with   www.daxformatter.com

 

View solution in original post

3 REPLIES 3
AlB
Super User
Super User

Hi @Anonymous

 

Try these two measures in for instance Card visuals:

 

 

NumberOfOnTime =
CALCULATE ( COUNT ( Table1[14 Day SLA] ), Table1[14 Day SLA] = "On Time" )
    + CALCULATE ( COUNT ( Table1[21 Day SLA] ), Table1[21 Day SLA] = "On Time" )

 

NumberOfNotOnTime =
CALCULATE ( COUNT ( Table1[14 Day SLA] ), Table1[14 Day SLA] = "Not On Time" )
    + CALCULATE ( COUNT ( Table1[21 Day SLA] ), Table1[21 Day SLA] = "Not On Time" )

 

Code formatted with   www.daxformatter.com

 

Anonymous
Not applicable

Yep, totally worked. Thanks! See below my fancy new visual.

 Pie.PNG

@Anonymous

I hadn't seen anything fancier in quite a while I must admit Smiley Happy

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