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
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.

@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
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.