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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Anonymous
Not applicable

Count rows where a Date is in the future

Hi everyone,

 

I am trying to create a measure that counts the rows of a column which has dates in it. 

The measure should only count the rows with dates in the future.

 

 

e.g.

JonasBI_0-1670500531601.png

this should show an output of 6 since today is the 8th of december 

Also I need another measure that counts all the entries from today and the past

 

Thanks in advance!

1 ACCEPTED SOLUTION
VijayP
Super User
Super User

@Anonymous  Try this

dates future = CALCULATE(COUNTROWS(Dates),ALL(Dates),Dates[Date]>TODAY())
I have used the datedimension table to count the rows



Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!
MY Blog || My YouTube Channel || Connect with me on Linkedin || My Latest Data Story - Ageing Analysis

Proud to be a Super User!


View solution in original post

1 REPLY 1
VijayP
Super User
Super User

@Anonymous  Try this

dates future = CALCULATE(COUNTROWS(Dates),ALL(Dates),Dates[Date]>TODAY())
I have used the datedimension table to count the rows



Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!
MY Blog || My YouTube Channel || Connect with me on Linkedin || My Latest Data Story - Ageing Analysis

Proud to be a Super User!


Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors