Hello.
I have a problem with Imacros scrpting. I need to extrapolate data from the file.csv and put it on apposite tabs but the problem is that it seems like Imacros put all data of all columns of the first line in the first tab only.
Here's an image of the file.csv

and this is the script:
The problem is that in the tag where should be only COL1 imaBasicros put the values of COL2 and COL3 together separated by comma. Basically in COL1 i should get only the number 1, instead i get 1,4,7 and in the next loop i get 2,5,8.
Where could possibly be the error?
Thx
I have a problem with Imacros scrpting. I need to extrapolate data from the file.csv and put it on apposite tabs but the problem is that it seems like Imacros put all data of all columns of the first line in the first tab only.
Here's an image of the file.csv

and this is the script:
Code:
TAB T=1
SET !DATASOURCE file.csv
SET !DATASOURCE_COLUMNS 3
SET !LOOP 1
SET !DATASOURCE_LINE {{!LOOP}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ID:edit_post ATTR=ID:post_three CONTENT={{!COL1}}
TAG POS=1 TYPE=TEXTAREA FORM=NAME:source ATTR=ID:htmlSource CONTENT=<a href={{!COL2}}<SP>title="title"<SP>target="_blank">{{!COL3}}</a>text
TAG POS=1 TYPE=BUTTON ATTR=ID:save_button
The problem is that in the tag where should be only COL1 imaBasicros put the values of COL2 and COL3 together separated by comma. Basically in COL1 i should get only the number 1, instead i get 1,4,7 and in the next loop i get 2,5,8.
Where could possibly be the error?
Thx