Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have created the measure - sum(if (([Principal Focus]='Clinical Care'), [Episode Target]))
Is it possible for the answer to display 'N/A' if the calculation returns 0, rather than the 0?
Thank you!
Hi, try this:
IF(SUM({<[Principal Focus]={'Clinical Care'}>}[Episode Target])>0, SUM({<[Principal Focus]={'Clinical Care'}>}[Episode Target]), 'N/A')
Hi, try this:
IF(SUM({<[Principal Focus]={'Clinical Care'}>}[Episode Target])>0, SUM({<[Principal Focus]={'Clinical Care'}>}[Episode Target]), 'N/A')
This works perfectly! Thank you