Forum Discussion
If Help
- Anonymous6 years ago
Anonymous
Result =
SWITCH (
[Time Issue],
"Good", SWITCH (
Sheet1[Week],
1, FORMAT (
CALCULATE ( SUM ( Sheet1[Acutaul Hour] ), FILTER ( Sheet1, Sheet1[Week] = 1 ) ),
BLANK ()
)
),
"Missing Timesheet", "Missing Timesheet"
)
Paul
Anonymous
Just try use the provideded to create a calculate column.
Best,
Paul
Hello,
The formual is working but it is summing all of the hours for week 1 in all of the columns that correlate to good. I need this to sum individually for each person in week 1. Not overall. Essentially I am calculatiing week 1 based on the week of the month. So fi we using this current month of November for example today 11/25/19 would be week4. Maybe I need to do this as a Measure so it will calculate based on the week within the month? Any suggestions?
- Anonymous6 years agoNot applicable
Anonymous
Result =
SWITCH (
[Time Issue],
"Good", SWITCH (
Sheet1[Week],
1, FORMAT (
CALCULATE ( SUM ( Sheet1[Acutaul Hour] ), FILTER ( Sheet1, Sheet1[Week] = 1 ) ),
BLANK ()
)
),
"Missing Timesheet", "Missing Timesheet"
)
Paul