Hi,
I have the following expression : -
sum({$<status={'Closed'}>} Duration/60)
which is basically : Sum(Duration/60) Where Status = "Closed"
What I want is
Sum(Duration/60) where status = "Closed" AND Product_Type=" Software" or "Hardware" or "Training"
How do I do this?
Try Below:
Sum({<status={'Closed'},Product_Type={'Software','Hardware','Training'}>}Duration)/60
HTH
Sushil
Hi,
Try this expression
sum({$<status={'Closed'}, Product_Type={"Software","Hardware","Training">} Duration/60)
Sergey
Try Below:
Sum({<status={'Closed'},Product_Type={'Software','Hardware','Training'}>}Duration)/60
HTH
Sushil
Hi,
Try this
Sum({<status={'Closed'},Product_Type={'Software','Hardware','Training'}>}Duration)/60)
Regards
ASHFAQ