Forum Discussion
Anonymous
3 years agoNot applicable
How do i create a column with variance?
There are many other questions like this but they always use months or day. For me, I want to calculate it hourly. I have 3 columns: canteen_location (text), hour (whole number, not summarised)...
- 3 years ago
Anonymous , Create a separate table with distinct hours and join it back with hours
Then you can have measures like
This hour= CALCULATE(sum('Table'[number_of_people]),filter(ALL('hour'),'Date'[hour]=max('Date'[hour])))
Last hour= CALCULATE(sum('Table'[number_of_people]),filter(ALL('hour'),'Date'[hour]=max('Date'[hour])-1))
amitchandak
3 years agoSuper User
Anonymous , Create a separate table with distinct hours and join it back with hours
Then you can have measures like
This hour= CALCULATE(sum('Table'[number_of_people]),filter(ALL('hour'),'Date'[hour]=max('Date'[hour])))
Last hour= CALCULATE(sum('Table'[number_of_people]),filter(ALL('hour'),'Date'[hour]=max('Date'[hour])-1))