Forum Discussion
afrutos
4 years agoResolver I
If not working
Hello everyone, I have this table, with my measures and everything is working fine except the if function, I would like to have: if my column "ComprobacioD" is 0 then is completed otherwise is In...
- 4 years ago
afrutos What's the measure for comprobacioD? Is it possible that it's not exactly 0? Try changing your if to
<0.00000001 and see if that helps, then continue troubleshooting from there.
AllisonKennedy
4 years agoCommunity Champion
afrutos What's the measure for comprobacioD? Is it possible that it's not exactly 0? Try changing your if to
<0.00000001 and see if that helps, then continue troubleshooting from there.
afrutos
4 years agoResolver I
Medida = IF(( [ComprobacioD]>= 0 && [ComprobacioD]< 0.0000000000001 ) , "completada","incompleta")
Now it's working !!
thank you!