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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
krzysztof
Helper III
Helper III

Wrong metric count all

I need to calculate how many stores there are in total only if there are any units. I need to do it in a measure.
The stores with a value is 28 and the count all measure shows 35

 

Count ALL.png

 

1 ACCEPTED SOLUTION
v-alq-msft
Community Support
Community Support

Hi, @krzysztof 

 

Based on your description, I created data to reproduce your scenario.

c1.png

 

You may create a measure as follows.

 

Count All = 
COUNTROWS(
    FILTER(
        ALL('DWH Dimlocalization'),
        'DWH Dimlocalization'[StoreID]<>BLANK()&&
        'DWH Dimlocalization'[Units]<>BLANK()
    )
)

 

 

Result:

 

c2.png

 

Best Regards

Allan

 

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

6 REPLIES 6
v-alq-msft
Community Support
Community Support

Hi, @krzysztof 

 

Based on your description, I created data to reproduce your scenario.

c1.png

 

You may create a measure as follows.

 

Count All = 
COUNTROWS(
    FILTER(
        ALL('DWH Dimlocalization'),
        'DWH Dimlocalization'[StoreID]<>BLANK()&&
        'DWH Dimlocalization'[Units]<>BLANK()
    )
)

 

 

Result:

 

c2.png

 

Best Regards

Allan

 

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

Try

 

sumx(summarize((Table),Table[Store],"_sum",sum(table[unit])),If([_sum]>0,1,0))
//OR
sumx(summarize(all(Table),Table[Store],"_sum",sum(table[unit])),If([_sum]>0,1,0))

 

 

Appreciate your Kudos.

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@amitchandak @Mariusz @Anonymous Unfortunately, your proposals do not work. Below in the picture I present what I mean
Count ALL.png

 

Anonymous
Not applicable

So, you're asking for a calculated column, not a measure, right? 

 

Result= IF(Units<> BLANK(), CALCULATE(COUNT('DWH DimLocalization'[StoreID]), FILTER(DWH DimLocalization, Units <> BLANK())), CALCULATE(COUNT('DWH DimLocalization'[StoreID])))
 
You'll put this column in your table as column. The result will be 35 for rows where Units = Blank(), 28 for rows where Units <> Blank()
Mariusz
Community Champion
Community Champion

Hi @krzysztof 

 

Try this

Measure = 
CALCULATE(
    DISTINCTCOUNT( 'DWH DimLocalization'[StoreID] );
    'DWH DimLocalization'[units] <> BLANK()
)

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
LinkedIn


 

Anonymous
Not applicable

Measure = CALCULATE(COUNT('DWH DimLocalization'[StoreID]), FILTER(DWH DimLocalization, StoreID <> BLANK()))

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 FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors