Forum Discussion
cristianml
7 years agoPost Prodigy
Measure if error values
Hi,
I need to remove by using If error I think the following data marked in red:
I have the following measures at the moment :
Var LCR = [Actual LCR]-[Forecast LCR]
Var LCR % = IFERROR([Var LCR] / [Forecast LCR],"")
What I need apart of this "IFERROR" is to say IF I have Blank in Actual LCR column put "" in Var LCR % Column.
Any ideas?
Thanks,
.
Hi,
Try this
=IF(ISBLANK([Actual LCR]),BLANK(),IFERROR([Var LCR]/[Forecast LCR],BLANK()))
1 Reply
- Ashish_MathurSuper User
Hi,
Try this
=IF(ISBLANK([Actual LCR]),BLANK(),IFERROR([Var LCR]/[Forecast LCR],BLANK()))