


I created a form in Adobe LiveCyle Designer that has a field where a number is entered manually and another field that is calculated. Is there anyway to create an error message if the manually entered amount does not match the calculated amount?
Solved! Go to Solution.
Views
Replies
Total Likes
Presuming that the fields are called nfCalculated and nfManual.
if (nfCalculated.rawValue != nfManual.rawValue) xfa.host.messageBox("The calculated value does not match the manually entered value.");
Views
Replies
Total Likes
Presuming that the fields are called nfCalculated and nfManual.
if (nfCalculated.rawValue != nfManual.rawValue) xfa.host.messageBox("The calculated value does not match the manually entered value.");
Views
Replies
Total Likes