Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
cseward1963
Creator
Creator

how to show "N/A" for a measure if the expression has a Null value

this is the expression, sum(Billed)-Before(sum(Billed))

I hope someone can help.

1 Solution

Accepted Solutions
sunny_talwar

May be this

Alt(Sum(Billed)-Before(Sum(Billed)), 'N/A')

View solution in original post

3 Replies
sunny_talwar

May be this

Alt(Sum(Billed)-Before(Sum(Billed)), 'N/A')

sunny_talwar

Or this

If(Len(Trim(Sum(Billed)-Before(Sum(Billed)))) = 0, 'N/A', Sum(Billed)-Before(Sum(Billed)))

cseward1963
Creator
Creator
Author

ALT function worked - THANK YOU!