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
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
Hi,
Very likely you file is separated by “Tabs” and you could simply try replacing them with semicolumn like:
inputString.Replace(vbTab,“;”)
Cheers
OMG… tanks a lot, You are the bests…