I have downloaded the data then I want to rename it with value PNO in excel like the photo below, hope someone understands and can help me. Thanks
I use the move file
the initial name of the file is “Export File.word”, and i wanna rename it to “38106.word” → the number comes from the value in the excel table in “PNO” row as in my previous question
1 Like
Welcome to the community
Not sure how you would map each value to each file but can try like this
- Use a for each row in datatable
- Then inside loop do your download steps
- Then after that in the same loop use rename file with from value to be the downloaded file and to value can be
currentItem(1).ToString + extension
Cheers
1 Like
For the extension, what can i fill it with?