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

I need to save a *.pdf files … But the applications that consume the files data needs a especific format. I need to replace the colums spaces to semicolons like the images shows … any help is apreciated… tks

image
image

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

OMG… tanks a lot, You are the bests…