I have string value “23 X 2, 34 X 5, 78 X 2” in Var1. I need to write value 23 into Field1 and 2 into Field2 and hit submit, then write value 34 into Field1 and 5 into Field2 and submit again and repeat same for rest of the values. Can someone suggest how to do it?
myString = “23 X 2, 34 X 5, 78 X 2”
- For Each in Split(myString,“,”)
– Type Into Field1 Split(CurrentItem,“X”)(0).Trim
– Type Into Field2 Split(CurrentItem,“X”)(1).Trim
– Click Submit
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.