09-30-2009, 11:14 AM
you can not add more than one data table to an action, but you can add sheets into data table, In your case adding another column for group member will help.
although I am not able to figure out where you are adding group members to a group. I can suggest you that create one more column (say Member) Now you can run a loop for adding the group and the members.
or if adding members is a seperate step then you can get rows which is for one group and add them
see the code below , let me know if it helps you.
although I am not able to figure out where you are adding group members to a group. I can suggest you that create one more column (say Member) Now you can run a loop for adding the group and the members.
or if adding members is a seperate step then you can get rows which is for one group and add them
see the code below , let me know if it helps you.
Code:
Set oSheet = DataTable.GetSheet(dtLocalSheet)
EndRow = oSheet.GetRowCount
For RowId = 1 To EndRow
oSheet.SetCurrentRow(RowId)
...Your Statements...
Next