I am using VBA and trying to save an excel workbook like this
ActiveWorkbook.SaveAs C:\SomeDir\Filename
However, my filename contains a "/" for example: "A3/File" (No, I cannot change that), which causes saving to fail because the slash is read as being part of the path and not part of the file name so it points to a directory that does not exist.
Is there anyway to save that file without having to remove the slash?