I attempted to group together individuals based on whether they had completed more than 75 hours using the following logic:
if SUM(IF ([Type (group)])='Training' then [Recorded Hours] ELSE 0 end)<75 then "less than 75 hours" ELSE "more than 75 hours" END
However, this doesn't produce the result I need as can be seen on the "Count by Training Category" worksheet, which only displays the "more than 75 hours category" and the count of individuals in this category is incorrect (it should only be 2 i.e Person 4 and 5).
All help gratefully received!
Thanks and regards,
Sandeep
4 answers
Try this?
IF {Fixed [Name]: Sum(IF [Type (group)] = 'Training' THEN [Recorded Hours] ELSE 0 END)} <75 THEN
"Less 75" ELSE ">75" END
Change accordingly.