Forum Discussion

petehorsch's avatar
petehorsch
Frequent Visitor
3 years ago
Solved

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?  

  • 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
        )

    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.

3 Replies

  • v-henryk-mstf's avatar
    v-henryk-mstf
    Icon for Community Support rankCommunity 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
        )

    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's avatar
    petehorsch
    Frequent Visitor

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