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
mumair
Helper I
Helper I

Help with not double counting

My data looks like the following:

 

Shipment | Voyage | Product | Failed Tanks | Count of Failed Tanks

1000 | NA100 | A | 3D, 3E | 2

1001 | NA100 | A | 3D, 3E | 2

1002 | NA100 | A | 3D, 3E | 2

2000 | NA200 | A | 1S, 1P | 2

2001 | NA200 | B | 2S | 1

3000 | NA300 | A | N/A | 0

 

I want the number of failed tanks by voyage, so ideally the output would look something like the following:

 

Voyage | Count of Failed Tanks by Voyage

NA100 | 2

NA200 | 3

NA300 | 0

 

Could someone show me a way to do this please?

2 REPLIES 2
Eric_Zhang
Employee
Employee

@mumair

You'll need to re-model the dataset.

 

Capture.PNG

Capture2.PNG

 

Then create a measure like

Count of Failed Tanks by Voyage = 
VAR cnt =
    CALCULATE (
        DISTINCTCOUNT ( yourTable[Failed Tanks] ),
        FILTER ( yourTable, yourTable[Failed Tanks] <> "N/A" )
    )
RETURN
    IF ( ISBLANK ( cnt ), 0, cnt )

Capture.PNG

=calculate(countrows(tablename),tablename[failed tanks]<>"N/A")



* Matt is an 8 times Microsoft MVP (Power BI) and author of the Power BI Book Supercharge Power BI.

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.