Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
this is my formula
=Count( {$<[State]={'Closed'},[Work Item Type]={'Task'}>} [State] )
i want to get all 'Task' not equal to 'Closed' .how to do this in qv
I tried below code but its not working
=Count( {$<State=- {'Closed'},[Work Item Type]={'Task'}>} [State] )
=Count( {$<State-= {'Closed'},[Work Item Type]={'Task'}>} [State] )
Regards

its getting a error
Hi,
It shows your red line but it work fine.
check it.
Regards
using -= like that in set analysis does highlight as an error but it is actually correct and should calculate for you
=Count( {$<State-={'Closed'},[Work Item Type]={'Task'}>} [State] )
Joe is right. this expression will work, even it will reflect the red line.
Hi,
This will still work in spite of the red line.
thanks,
Rajesh Vaswani