cancel
Showing results for 
Search instead for 
Did you mean: 

#Overflow error due to division with 1.#INF

0 Kudos


Hi All,

I am working with BO 4.0 i want to divide two measure objects, where as A/B , the B 's  one of the values is 1.#INF so i am getting

#overflow error so i want to change 1.#INF(measure) to value 1. how can i achive this.

Thanks

Accepted Solutions (0)

Answers (1)

Answers (1)

peter_ostlaender
Discoverer
0 Kudos

Use NOERRO() or NODIV() methods in BEx or use this formula in WEBI

=If(FormatNumber([KF];"#,#")="1.#INF") Then 0 Else [KF]

Thanks