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
andrewa521
Frequent Visitor

Need help with Count IF esque formula.

Hey I am having some trouble with the syntax on this one, thanks so much for any help!

 

Basically For each Date and for each Letter, I want to count the amount of categories that have a value greater than 0., in Dax. I have shown the examples for the first three months of what I would like to appear in column E.

 

https://docs.google.com/spreadsheets/d/1VL_qIyGzM4fbHOyrpl45SzM3CXImctGQrL07WpyvTQU/edit?usp=sharing

 

Thanks again,

Andrew

1 REPLY 1
AllisonKennedy
Super User
Super User

@andrewa521  You can try this formula; 

 

Distinct Categories =
CALCULATE(
    DISTINCTCOUNT(SampleData[Category]),
    FILTER(SampleData, CALCULATE(SUM(SampleData[Amount])) > 0)
)
 
AllisonKennedy_0-1671664778717.png

 

However, you should consider setting up a best practice data model with dimension tables that will help make calculations like this a bit easier. Also please note that my solution above relies on you having a UniqueID column in your table for it to return accurate results 100% of the time. 
 
See if these blogs help explain a bit more what I mean, otherwise just reply back with your questions: 
 

Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

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.