Answered
I have been trying to create an IF formula for a form I am creating and I do not know how to do this in LiveCycle.
I have a table that I need to say IF this cell information is greater than the information entered in another cell put (CB), IF it is less leave it blank.
I know the formula to use for an excel document, but everthing that I have tried to create in LiveCycle is giving me an error.
This is how I would assume the equation should go, but it does not work.
form1.#subform[0].Table1.Row1.red1::calculate - (JavaScript, client)
IF(xfa.resolveNode("form1.#subform.Table1.Row1.Cur1")>xfa.resolveNode("form1.#subform.Table1.Row1.Prop1"),"CB"," ")
Can you please let me know what I am not doing correctly
You'll need to use ".rawValue" property to refer to the values in object, and you'll have to code like general javascript formula.
try;