Use the following code to add six new customers
Assumptions:
1. You have a column, named "Customer", in the global sheet
2. The first six enteries in this column are "New" (to create a new customer)
3. The enteriers after 6 are the customer names, in random order, which we have added in first 6 iterations.
Code:
If DataTable.Value("Customer",dtGlobal) = "New"
Browser.Page.WebList.Select "Add New"
Code to add a new customer goes here
Else
Browser.Page.WebList.Select DataTable.Value("Customer",dtGlobal)
Code after selecting the customer goes here
End IF
Assumptions:
1. You have a column, named "Customer", in the global sheet
2. The first six enteries in this column are "New" (to create a new customer)
3. The enteriers after 6 are the customer names, in random order, which we have added in first 6 iterations.