I have a table format with record date(including seconds), user ID, Database
I need to show the maximum distinct number of users per hour grouped by every 5 minutes ( not sure if this explains - please see example below)
I am only using DirectQuery storage and not intended to change that to import as well.
I have tried various methods but could not manage without changing the storage mode. Any help is appreciated.
My table sample is,
21/01/2019 12:35:00, jane, UK
21/01/2019 12:35:00, joe, UK
21/01/2019 12:35:00, joe, NL
21/01/2019 12:40:00, bob, NL
21/01/2019 12:40:00, jane, NL
21/01/2019 12:40:00, joe, NL
21/01/2019 12:40:00, jakob, NL
Expected result
21/01/2019 12, UK, 2
21/01/2019 12, NL, 4
