Hello All,
I have a report that shows the individual stats as well as the individual stats compared to other members.
What I would like to do is to separate their total time by Production and Non-Production.
I get the total of both production and nonproduction by:
To determine whether prod or non-prod, i have a field called "FunctionType"
Can I do something like:
The reason i want to exclude "Non-production" is because i have about 50+ functions that are production and non-production combined.
Please help.
THank you,
I have a report that shows the individual stats as well as the individual stats compared to other members.
What I would like to do is to separate their total time by Production and Non-Production.
I get the total of both production and nonproduction by:
Code:
=Sum([TotalTime])
To determine whether prod or non-prod, i have a field called "FunctionType"
Can I do something like:
Code:
=Sum([TotalTime], [FunctionType]<>"Non-Production")
The reason i want to exclude "Non-production" is because i have about 50+ functions that are production and non-production combined.
Please help.
THank you,