Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
2 years ago
Solved

Measure that shows Simultaneous Entries by Time

This table logs individuals that have logged into the network using the Date & Time columns.   Please help me to write a measure that shows, “how many simultaneous logs happened at any given time?” 

 

First Name  Last Name  Email Opt Out From Emails?  Date      Time
namef1namel1[email protected]TRUEThursday, April 11, 2024  9:59:00 AM
namef2namel2[email protected]TRUEThursday, April 11, 2024  9:59:00 AM
namef3namel3[email protected]TRUEThursday, April 11, 2024  9:59:00 AM
namef4namel4[email protected]TRUEThursday, April 11, 2024  11:00:00 AM
namef5namel5[email protected]TRUEThursday, April 11, 2024  2:59:00 AM
namef6namel6[email protected]TRUEThursday, April 11, 2024  9:59:00 AM
namef7namel7[email protected]TRUEThursday, April 11, 2024  9:59:00 AM
  • The answer will vary depending on the context of 'any given time'. 
    Something as simple as 

    Row Count =
    COUNTROWS(tableName)

    will return the number of rows in the table and will accept any context applied by a visual.
    Using your example data the above measure would return 

    in a table visual with the date and time columns added as context.
    The same measure would return 

    in a card visual with no context applied.

     

1 Reply

  • The answer will vary depending on the context of 'any given time'. 
    Something as simple as 

    Row Count =
    COUNTROWS(tableName)

    will return the number of rows in the table and will accept any context applied by a visual.
    Using your example data the above measure would return 

    in a table visual with the date and time columns added as context.
    The same measure would return 

    in a card visual with no context applied.