Forum Discussion
Anonymous
4 years agoNot applicable
GroupBY with a constant value
I have a timesheet export that contains columns with the date, acitivity and hours worked: I wrote the following DAX GroupBy formula to group hours per day, which gives the desired result of t...
- 4 years ago
Anonymous , You can create a new column
Overtime = Sheet1[Hours])-8
or new measure and use that in visual
"Overtime", SUMX(values(Sheet[Date]), Sheet1[Hours])-8)
amitchandak
Super User
4 years agoAnonymous , You can create a new column
Overtime = Sheet1[Hours])-8
or new measure and use that in visual
"Overtime", SUMX(values(Sheet[Date]), Sheet1[Hours])-8)