data showing -infinity
Hi,
I am having a data value showing -Infinity. How can i convert this to zero value?
Thanks,
Tom
0
Best Answer
-
Can you try creating a new line item with the formula: IF Payback*0 = 0 then Payback else 0. You can then update the Payback line item directly.
0
Answers
-
Thanks @ankit_cheeni - it works. Not really sure why it has that inifinity value.
Regards,
Tom
1 -
Create a new line item or maybe edit the formula in the above one and use this check:
If a new line item is created then,
IF ABS(Payback) <> VALUE("Infinity") THEN Payback ELSE 0
Cheers!!
0