Selector manipulation. part ID, part from csv file

If I have a selector
"<webctrl id=‘form_ULTIMATE’ tag=‘INPUT’ />"

where ULTIMATE is I need this to replace ULTIMATE with info from CSV file

I was thinking this would work but I must have something wrong

"<webctrl id='form_"+row("Column Heading").toString"’ tag=‘INPUT’ />"

thanks Karen

Solved it but re-entering the command and it worked

Hi,

I think it should be : “<webctrl id='form_” + row(“Column Heading”).toString + “’ tag=‘INPUT’ />”. You lost a “+”

Thanks,
Aisling

1 Like

Thank you…yes I re-entered and added in the missing +

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.