I am getting over/underflow error, below is the formula and related values:
UtilizedContractValue = 0
ApprovedContractValue = 0
$=(UtilizedContractValue/ApprovedContractValue)
When you open the form both values are zero initially.
Need help to resolve it trough 'FormCalc'
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
Divide by zero is not a valid case, you will always get exception.
You need to put a check, in case the divisor is 0
Views
Replies
Total Likes
Hi,
Divide by zero is not a valid case, you will always get exception.
You need to put a check, in case the divisor is 0
Views
Replies
Total Likes
can you try like
if ( ApprovedContractValue > 0 ) then (UtilizedContractValue/ApprovedContractValue) endif
check the guide at https://helpx.adobe.com/pdf/aem-forms/6-2/formcalc-reference.pdf
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies