Forum Discussion
ChayceDuncan2
6 years agoQrew Cadet
Try swapping out isnull() with a Nz() function. IsNull can have some weird behavior with 0 versus actual nulls. Nz() will force the value to read as 0 and you can compare to that.
So like:
If(Nz([Actual])=0, [Estimated], [Actual])
Chayce Duncan | Director of Strategic Solutions
(720) 739-1406 | chayceduncan@quandarycg.com
Quandary Knowledge Base
So like:
If(Nz([Actual])=0, [Estimated], [Actual])
Chayce Duncan | Director of Strategic Solutions
(720) 739-1406 | chayceduncan@quandarycg.com
Quandary Knowledge Base