Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
Could some one rectify this expression , it is not executing.
=Count(if([P ID]='1',([Review Name]='ECO1' , [Review Decision]<>'Pass') and
if([P ID]='2',([Review Name]='ECO2', [Review Decision]<>'Pass'),PRJ_ID)))
need to count PRJ_ID based on theses conditions [P ID]='1',([Review Name]='ECO1' , [Review Decision]<>'Pass'
Thanks
Kush141087:
=Count({<[P ID]={'1'},[Review Name]={'ECO1'} , [Review Decision] - ={'Pass'}> * <[P ID]={'2'},[Review Name]={'ECO2'} , [Review Decision] - ={'Pass'}>} PRJ_ID)
I agree, except that you need a union rather than an intersection:
=Count({<[P ID]={'1'},[Review Name]={'ECO1'} , [Review Decision] -={'Pass'}> + <[P ID]={'2'},[Review Name]={'ECO2'} , [Review Decision] -={'Pass'}>} PRJ_ID)
(and no spaces between the - and = for the -= operator)
Hi Vamsi,
Try this,
=Count({<[P ID]={'1','2'},[Review Name]={'ECO1','ECO2'} , [Review Decision]=-{'Pass'}>} PRJ_ID)
HI
Try this
Try this below Set analysis Expression I hope this will works..
=Count({<[P ID]={'1'},[Review Name]={'ECO1'},notMatch([Review Decision],'Pass')>}PRJ_ID)
try
=Count({<[P ID]={'1'},[Review Name]={'ECO1'} , [Review Decision] - ={'Pass'}> * <[P ID]={'2'},[Review Name]={'ECO2'} , [Review Decision] - ={'Pass'}>} PRJ_ID)
Kush141087:
=Count({<[P ID]={'1'},[Review Name]={'ECO1'} , [Review Decision] - ={'Pass'}> * <[P ID]={'2'},[Review Name]={'ECO2'} , [Review Decision] - ={'Pass'}>} PRJ_ID)
I agree, except that you need a union rather than an intersection:
=Count({<[P ID]={'1'},[Review Name]={'ECO1'} , [Review Decision] -={'Pass'}> + <[P ID]={'2'},[Review Name]={'ECO2'} , [Review Decision] -={'Pass'}>} PRJ_ID)
(and no spaces between the - and = for the -= operator)
Thankyou Jonathan