You need to use the "resolveNode" function in order to reference the
objects correctly.In the script executed by the button, place the
following:var selectedRow =
TABLE_1.resolveNode("Page1.OPTIONS_A").rawValue;var selectedColumn =
TABLE_1.resolveNode("Page1.OPTIONS_B").rawValue;txtTableValue.rawValue =
TABLE_1.resolveNode(selectedRow + "." + selectedColumn).rawValue;The
only other thing you need to do, it to set the value in your radio
button binding to A_1, A_2, etc for each of the radio butto...