Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Carlaf_93
Creator II
Creator II

Date Problem

Good morning,

i've got something like this-.

load * inline [
Entrance_date,exit_date,id,
11/23/2023 10:00:00,11/23/2023 10:10:00,1

];

exit script;

i've would like to have a line graph that shows every minute how many people are inside the shop

Labels (3)
2 Replies
Or
MVP
MVP

You would need to create a record for every minute to do this, I believe. Note that this may have a major impact on app size and performance.

Load id, Entrance_date+((IterNo()-1)/1440) as ByMinute From YourTable

While Entrance_date+((IterNo()-1)/1440) <= exit_date;