Answered
Have an entry cell for noi and one for cap_rate. The result cell is:
noi / cap_rate * 100
Works fine except that entering a number in the noi cell generates a "Script failed" with "Error: arithmetic over/underflow". A click on the OK button enables one to proceed with the calculation, but that's not acceptable. How do I eliminate this error message?
Thanks.
if(HasValue(cap_rate) then
noi / cap_rate * 100
else
''
endif
George Kaiser