I\'m currently use this function for saving, but I have a problem with it:
Private Sub spara() ActiveWorkbook.SaveAs Filename:=\"T:\\filepath+ ActiveWork
Which language does your Excel use? If your native language uses ";" as default, you can pass the parameter "local:=True"
ActiveWorkbook.SaveAs Filename:="C:\Temp\Fredi.csv", FileFormat:=xlCSV, CreateBackup:=False, local:=True
If not, your only choice is searching and replacing afterwards...