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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
percy83
Frequent Visitor

Countif measure is below 0

Hi,

 

I am a beginner to DAX and got stuck on what would be a simple thing to solve in Excel.

 

I have the following measures

 
Trend sales =
CALCULATE([Total sales CC];
FILTER(dStoreInfo;
MAX(dDate[Date]) - dStoreInfo[Opening Date] - 365 - [Selected trend range] >= 0);
FILTER(dDate;
dDate[Date] > MAX(fSalesDataRunning36[Date]) - [Selected trend range] && dDate[Date] <= MAX(fSalesDataRunning36[Date]))
)
 
Trend bench sales =
CALCULATE([Trend sales];SAMEPERIODLASTYEAR(dDate[Date]))
 
Trend variance sales % = DIVIDE([Trend sales]-[Trend bench sales];[Trend bench sales];BLANK())
 
What I would like to do is count how many of  "Trend variance sales %" is less than 0
 
It should be easy right?! 
 
Thanks in advance! 
1 ACCEPTED SOLUTION
Ashish_Mathur
Super User
Super User

Hi,

Does this help?

=CALCULATE(COUNTROWS(dStoreInfo),FILTER(dStoreInfo,[Trend sales]>0))


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

2 REPLIES 2
Ashish_Mathur
Super User
Super User

Hi,

Does this help?

=CALCULATE(COUNTROWS(dStoreInfo),FILTER(dStoreInfo,[Trend sales]>0))


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
parry2k
Super User
Super User

@percy83 you COUNTX function to calculate # of counts.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors