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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 2024 Power BI update to learn about new features.

August Carousel

Fabric Community Update - August 2024

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