Forum Discussion
AllanBerces
Post Prodigy
2 years agoNew Visual Calculation_Replace Negative Value to 0
Hi Good day, Can anyone help me on how can i replace the negative value to 0 in new visual calculation. Thank you Allan
- 2 years ago
Try =
IF([Materials Needed] - [Available Items] < 0, 0,,[Materials Needed] - [Available Items]
)
lucadelicio
Impactful Individual
2 years agoTry =
IF([Materials Needed] - [Available Items] < 0, 0,
,[Materials Needed] - [Available Items]
)
)
- AllanBerces2 years ago
Post Prodigy
hi lucadelicio thank you, work very well