I have a form with a field ItemNumber
that has a validation forumla that ensures a value is entered.
In lotusscript i create a new document with that form, then depending on the value of a different computed field ItemProductFamilyType
(computed based on a field of another doc) i might want to populate ItemNumber
.
The issue i have is that if i look at the value of ItemProductFamilyType
it's blank, because it's not yet been computed. It'll only have a value once a field is updated, then it's the document refreshed/re-computed.
I'm trying to use ComputeWithForm
for this (with the raiseError
parameter being a 1 or 0), however because of validation formulas on other fields it's not letting me.
So, how can i get computed fields to update their value without checking/erroring on validation formulas?