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
kattlees
Post Patron
Post Patron

Counting rows on a certain date

I need to get a count of the number of rows on a given day in a given month. My issue is when their arrival date or departure date is in a different month.

 

Example:

Visitor                 arrival                     departure

123456               6/30/21                    7/2/21

123457               7/1/21                      7/3/21

123458                7/2/21                   8/3/21

 

I need this result:

7/1/21 - 2

7/2/21 - 2

7/3/21 - 1

 

I have two tables:

Calendar with Date field

Then Guests with guest number, arrival date, departure date.

 

If I do a relationship between Calendar Date and arrival date - it doesn't count the peson who arrived the month prior.

If I do a relationship between Calendar Date and departure date - it doesn't count the person who leaves the next month.

 

What step am I missing?

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@kattlees 
Take a look at these two Quick Measures as I think you want something like them.

https://community.powerbi.com/t5/Quick-Measures-Gallery/Open-Tickets/m-p/409364
https://community.powerbi.com/t5/Quick-Measures-Gallery/Periodic-Billing/m-p/409365


@ 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...

View solution in original post

2 REPLIES 2
ryan_mayu
Super User
Super User

@kattlees 

maybe you can try this

Measure = calculate(COUNTROWS('Table'),FILTER('Table','Table'[arrival]<=max('Date'[Date])&&'Table'[departure]>max('Date'[Date])))

pls see the attachment below





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Greg_Deckler
Super User
Super User

@kattlees 
Take a look at these two Quick Measures as I think you want something like them.

https://community.powerbi.com/t5/Quick-Measures-Gallery/Open-Tickets/m-p/409364
https://community.powerbi.com/t5/Quick-Measures-Gallery/Periodic-Billing/m-p/409365


@ 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...

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.