Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
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?
Solved! Go to Solution.
@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
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
Proud to be a 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
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
90 | |
88 | |
83 | |
64 | |
49 |
User | Count |
---|---|
126 | |
110 | |
87 | |
70 | |
66 |