I've inserted a calculated Measure into my Transformer Model. The calculation is a simple division
A / B
My problem is that B could be zero in some cases.
Is there a way to expand my calculation to say
If B <> 0, then A / B
Else NULL
Or, is there another way to code for divide by zero possibilities?
Thanks!
A / B
My problem is that B could be zero in some cases.
Is there a way to expand my calculation to say
If B <> 0, then A / B
Else NULL
Or, is there another way to code for divide by zero possibilities?
Thanks!