Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session

Simple FormCalc equation not working

Avatar

Level 1

I'm trying to do a simple formula hours1.rawValue = hr0.rawValue + hours.rawValue, an entire "Row2[0]" row isn't working for some reason. It won't auto populate the ".rawValue" as well as work in general. Any help would be great.livecycle gradesheet.jpg

2 Replies

Avatar

Level 3

Try this:

form1.#subform[0].Table4.Row2[1].hours1.rawValue = form1.#subform[0].Table4.Row2[0].hr0.rawValue + form1.#subform[0].Table4.Row2[1].hours.rawValue

Regards,

Varun Nohria

Avatar

Level 9

To be on safer side try to use xfa.resolveNode() feature. For ex:

xfa.resolveNode("form1.#subform[0].Table4.Row2[1].hours1").rawValue = xfa.resolveNode("form1.#subform[0].Table4.Row2[0].hr0").rawValue + xfa.resolveNode("form1.#subform[0].Table4.Row2[1].hours").rawValue

Thanks,

Bibhu.