I have two rollup field I need to evaluate and for some reason I can't get it to work.
Field1: {rollupStockMinimum}
Field2: {rollupNonStockMinimum}
Field1 is empty, but Field2 is not.
I only want the formular to do something when there are something in both fields.
I've tried with this very simple formular
IF(AND(Field1, Field2), True, False)
However for some reason it evaluates to 'True' despite Field1 being empty
I've tried to just do IF(Field1, "True", "False") where it evaluates to False.
What is it I'm missing or don't understand?