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
CPSTC
Regular Visitor

Count IF Column

Hi All,

 

I have a number of columns that are dates, What I want to do is to create a column that counts how many of those dates fall between a specific date range.

 

For instance I have a record CNTRCT1 that has multiple dates - I want a count of how many of those dates fall between a specific range 

 

Dates_PowerBI.png

 

Is this possible with a custom column, could anybody give me any pointers on how to do this?

 

Thanks 

 

1 ACCEPTED SOLUTION
Vvelarde
Community Champion
Community Champion

@CPSTC

 

Hi, Another way is using the Query Editor

 

CountIF.gif

 

Regards

 

Victor

Lima - Peru




Lima - Peru

View solution in original post

5 REPLIES 5
Vvelarde
Community Champion
Community Champion

@CPSTC

 

Hi, Another way is using the Query Editor

 

CountIF.gif

 

Regards

 

Victor

Lima - Peru




Lima - Peru

Great! Thanks for your help @Vvelarde

@Vvelarde

 

Brilliant =D

Greg_Deckler
Super User
Super User

Bit brute force, but how about this?

 

MyCount = 

VAR date1 = IF([Date] < DATE(2017,08,19) && [Date] > DATE(2017,08,15),1,0)

VAR date2 = IF([Date] < DATE(2017,08,19) && [Date] > DATE(2017,08,15),1,0)

VAR date3 = IF([Date] < DATE(2017,08,19) && [Date] > DATE(2017,08,15),1,0)

VAR date4 = IF([Date] < DATE(2017,08,19) && [Date] > DATE(2017,08,15),1,0)

VAR date5 = IF([Date] < DATE(2017,08,19) && [Date] > DATE(2017,08,15),1,0)

RETURN date1 + date2+ date3 + date4 + date5

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Thanks for your help @Greg_Deckler

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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