(solved)Replace in csv file the colums spaces to semicolons

Hi,

Very likely you file is separated by “Tabs” and you could simply try replacing them with semicolumn like:

inputString.Replace(vbTab,“;”)

Cheers

2 Likes