Issue report by comment
A calculation field defined as = Min ( InputField ; 100 ) returns 100 when InputField is empty - even though the option 'Do not evaluate if al referenced fields are empty' is turned on. I have no problem with the actual result returned by the function itself: Min ( "" ; 100 ) should return 100.But I don't understand why the calculation field evaluates, when the only referenced field is empty. Workarounds: Min ( InputField + 0 ; 100 ) or: Case ( InputField ; Min ( InputField ; 100 ) )↧