Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
Below count expressions which works fine:
COUNT({$<QC-={'NA'}>}DEPARTMENT)
COUNT({$<QC-={"=QC like 'NA'"}>}DEPARTMENT)
it does not work, when i add another condition to existing expression:
COUNT({$<PROD-={"=PROD like 'NA'"},QC-={"=QC like 'NA'"}>}DEPARTMENT)
COUNT({$<QC-={'NA'},PROD-={'NA'}>}DEPARTMENT)
Thanks,
MAK.
Try this out:
COUNT({$<QC-={'NA'}>+<PROD-={'NA'}>}DEPARTMENT)
try QC={"*NA*"} also for the others
Hi Thanks for your quick reply,
I have tried that wild card " * " but hard luck it works only for single expression...
Thanks,
MAK
Do you get correct value when you use
COUNT({$<PROD-={"=PROD like 'NA'"}>}DEPARTMENT)?
Try this out:
COUNT({$<QC-={'NA'}>+<PROD-={'NA'}>}DEPARTMENT)
Yes
Hi Thiago,
Thanks this works...even below can also help:
(COUNT({$<PROD-={'NA'}>}DEPARTMENT) + COUNT({$<QC-={'NA'}>}DEPARTMENT))
Thanks,
MAK.
Sound's good man. I'm happy to help you.