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
VendettaBob
Helper II
Helper II

Count Filtered SUM Measure

Hi,

 

I have data in the following format:

 

Date                        Reg                     Distance Miles

20190101                Veh 1                    0

20190101                Veh 1                    0

20190101                Veh 2                     123

20190102                Veh 1                     1

20190102                Veh 1                     0

20190102                 Veh 2                   0

20190102                  Veh 3                  0

20190102                 Veh 3                   0

 

Distance Miles is already a measure. What I need to do is to Count the number of Distinct 'Reg' where the sum of the 'Distance Miles' = 0

 

So the answer above would be:

20190101     1     (Veh 1)

20190102     2     (Veh 2, Veh 3)

 

Many thanks,

2 REPLIES 2
AlB
Super User
Super User

Hi @VendettaBob 

1. Place Table1[Date] in a table visual

2. Place this measure in the visual

Measure =
SUMX ( DISTINCT ( Table1[Reg] ), INT ( [Distance Miles] = 0 ) )

Please mark the question solved when done and consider giving kudos if posts are helpful.

Cheers  Datanaut

 

 

Hi,

 

Thanks for this. This would work in a graph with the date on the x axis.

 

However, I also need this value in a tile. So would need to incorporate the date element into the calc. How would I do this?

 

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.

Top Solution Authors