I posted a question last week, and gkaiseril was very helpful!
I have come across an issue that I believe I know is due to my limited knowledge of LiveCycle and FormCalc: I am trying to have a text field in a table (ex. IStyle) calculating the .formattedValue of data from multiple, similarly named drop-down lists, each in different subforms (ex. MStyle). Ive tried a few different ways to have the field access and calculate the subforms that have the same named drop-down lists (for instance, the expressions ".." and "[*]" ), but have been unsuccessful.
Am I missing something in the logic, or is this something that needs JavaScript (such as the .resolveNode)? Thanks in advance!
$.rawValue = null
if(Table2.Model[*].MSide.rawValue ne null)
then
$.rawValue = Table2.Model[*].MSide.formattedValue
else
$.rawValue = null
endif
I have tried to adapt what I learned from gkaiseril, and it works fine for the first subforms field; however, for the other instance of the field in other subforms, it does not work. I know I am doing something wrong with this, I just do not know what.