Can anyone tell me how to do the following?
I have a table that I built buttons so the user can add "Rows". When they are done adding Rows, I want to get (refrence) all the fields from ALL the rows. How do I figure out how many row's there are??? And how do I get the info from them???
If it's just one row, I know how to refrence it; Table1.Row1.NameOne.rawValue
How do I get the "added rows" information?
Thanks in advance for any help !
Take care, Rod
xfa.form.form1.Page3.IDCardForm.Medications.rawValue = " "
xfa.form.form1.Page3.IDCardForm.Medications.rawValue = Concat(xfa.form.form1.Page3.IDCardForm.Medications.rawValue," ",xfa.form.form1.InputSubform1.Medications.PresMedSubForm.PrescribedMeds.Row1[*].MedName.rawValue)
These two lines are in the "Calculation" section (as FormCalc) on a TEXT Field that will become all the medication names entered in the table.....
Thanks, Rod