Use an element from the table extraction wizard to integrate it in a url

I have to extract customer identifiers then put them in url a web page containing more information on each of them.
For that I have to make a loop to extract the numbers in the identifier column and put them in the url (only the identifier changes in the url)

i have extract this table with table extractor

Identifier:
OI-KOL-88888
OI-KOL-88887
OI-KOL-88886
OI-KOL-88885
OI-KOL-88884
OI-KOL-88883
OI-KOL-88882
OI-KOL-88881

the robot must take the identifier code and insert it in the url. and that for each identifier

https://trucmachin/preparation/intervention/OI-KOL-888888/info-generales

I don’t know if it is very clear, I am a beginner on UiPath and I haven’t a high english level

Hi @gneuuu ,
Is this is the URL format?
https://trucmachin/preparation/intervention/OI-KOL-888888/info-generales
Where only the identifier(OI-KOL-888888) is changing everytime?
Just asking for clarification…

Yes Only OI-KOL-88888 change.
It will become OI-KOL-88887 and OI-KOL-88886 etc… data extracted with the table extractor wizard

Inside your For Each Row…

"https://trucmachin/preparation/intervention/" + CurrentRow("Identifier").ToString + "/info-generales"

Nice, thank you