Forum Discussion
amit_maniyar
2 years agoHelper I
Hourly Table using DAX
Hi All, here is the scenario; I want to create an hourly table using generateseries function as shown in the picture. I am not sure if I am making any mistake. but ,I am supposed to see the hourly...
- 2 years ago
Think of the cardinality. A hourly table has 24 entries. A minute table has 1440 rows. A time table has 86400 rows. This will quickly become unmanageable.
lbendlin
2 years agoSuper User
Have you considered using GENERATESERIES(0,23) ?