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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
shaunguyver
Helper III
Helper III

Count number of dates between two dates

I have a table with a single column (date), which has a series of dates under it.

 

I need to create a measure that counts the number of dates that falls in 2018.

 

Any idea how I can do this?

 

Thanks

2 ACCEPTED SOLUTIONS
Vvelarde
Community Champion
Community Champion

@shaunguyver

 

Hi, lets try with this:

 

Datesin2018 = COUNTROWS(FILTER(Table1,YEAR(Table1[Fecha])=2018))

Regards

 

Victor

 




Lima - Peru

View solution in original post

v-chuncz-msft
Community Support
Community Support

@shaunguyver,

 

You may also try the DAX below.

Measure =
CALCULATE ( COUNT ( Table1[date] ), Table1[date].[Year] = 2018 )
Community Support Team _ Sam Zha
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

3 REPLIES 3
v-chuncz-msft
Community Support
Community Support

@shaunguyver,

 

You may also try the DAX below.

Measure =
CALCULATE ( COUNT ( Table1[date] ), Table1[date].[Year] = 2018 )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Vvelarde
Community Champion
Community Champion

@shaunguyver

 

Hi, lets try with this:

 

Datesin2018 = COUNTROWS(FILTER(Table1,YEAR(Table1[Fecha])=2018))

Regards

 

Victor

 




Lima - Peru

This works! Thank you. For some reason I can't accept this as a solution, but please accept this as confirmation that it is - thanks again

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.