Kindly, I need your help, I am reading the data from Excel and save it in the data table (customer site information), to add the site information, I get the customer number and I save it in a variable, then I use for each row activity to add this information on the website. inside this loop, I need to create a site number, by increment one number on the customer number for each site, I need your help at this point.
Example: If the customer number is 100 so the first site number is 101 then for the second site 102 … etc.
it is the name of your column in which you will have the number you want to start increment… not sure if it is in the data table… if not then change that to like:
2.1 Use variable in your for each row
…
2.X varSiteNumber = varSiteNumber + 1 (last thing in for each row)