Help with Excel / Word and macros

Copper Contributor
I am looking for help with a few different tasks. I sell sports cards on eBay and they have a quick file upload in a spreadsheet format. When I list cards though there could be as many as 800 variations. I can download a spreadsheet with the info I need but each variation has to be separated with a semi colon. Is there a way to use macros to do this. Second issue is inputting picture locations into the spreadsheet. I was told you can use macros to do this task also. It would be 800 different images into 800 different lines on the spreadsheet. Any help would be appreciated. Thank you!
1 Reply

@NoahRaymond 

 

Can you share how the input would look like?

 

If you are going to have the card info in a set of rows or columns and if all you need is one single text of all of them with semicolons in between, then you can use the TextJoin function

 

=TextJoin(";",,[Your Range])

 

Alternatively, if you are already have them as a continous text with space in between and you need to replace the space with semicolon then you can either use find / replace command or use substitute function

 

=Substitute(YourText," ",";")