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
petehorsch
Frequent Visitor

How many guests on a certain day

I have a spreadsheet that lists client check-in and check-out dates. What I'd like to be able to do is report on the number of clients that were staying on a given day.  

What's a good way to be able to generate a value (that I could report individually or graph over time) that would report the number of guests we had staying with us on those days?  

1 ACCEPTED SOLUTION
v-henryk-mstf
Community Support
Community Support

Hi @petehorsch ,

 

You can try below formula:

mount =
VAR sel =
    SELECTEDVALUE ( 'Date'[Date] )
RETURN
    CALCULATE (
        COUNTROWS ( 'Table' ),
        'Table'[Start_date] <= sel
            && 'Table'[Leave_date] >= sel
    )

vhenrykmstf_0-1669624433561.png

vhenrykmstf_1-1669624445313.png

If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


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-henryk-mstf
Community Support
Community Support

Hi @petehorsch ,

 

You can try below formula:

mount =
VAR sel =
    SELECTEDVALUE ( 'Date'[Date] )
RETURN
    CALCULATE (
        COUNTROWS ( 'Table' ),
        'Table'[Start_date] <= sel
            && 'Table'[Leave_date] >= sel
    )

vhenrykmstf_0-1669624433561.png

vhenrykmstf_1-1669624445313.png

If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

petehorsch
Frequent Visitor

How do I create the 'Date'[Date} value you reference?

 

Shaurya
Memorable Member
Memorable Member

Hi @petehorsch,

 

You can use:

 

Count = CALCULATE(DISTINCTCOUNT('Table'[Guest]),FILTER('Table','Table'[Check In Date]<='Date'[Date]&&'Table'[Check Out Date]>='Date'[Date]))

 

Works for you? Mark this post as a solution if it does!
Check out this blog of mine: How to Export Telemetry Data from Azure IoT Central into Power BI

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.