sanantonio
Board Regular
- Joined
- Oct 26, 2021
- Messages
- 124
- Office Version
- 365
- Platform
- Windows
Hi All,
Could I please get some help?
In order to upload data in SAP I export data from another source, run it through my formatting tool and produce a .csv file. Unfortunately the concat I require to make the data readable in SAP includes a comma so the .csv will always save with "
Of course the "s aren't visible when the .csv is opened in Excel, only in Notepad. But if you try and upload to SAP without opening notepad, doing a ctrl+h and getting rid of all the "s.
In an ideal word I'd like a code that opens it in notepad, removes the "s for me and saves it again. But I'm not greedy. I'd settle for just a code that opens the .csv in Notepad for me?
I try...
But of course this just opens the .csv in excel.
Could any of you fine folks help me out?
Could I please get some help?
In order to upload data in SAP I export data from another source, run it through my formatting tool and produce a .csv file. Unfortunately the concat I require to make the data readable in SAP includes a comma so the .csv will always save with "
Of course the "s aren't visible when the .csv is opened in Excel, only in Notepad. But if you try and upload to SAP without opening notepad, doing a ctrl+h and getting rid of all the "s.
In an ideal word I'd like a code that opens it in notepad, removes the "s for me and saves it again. But I'm not greedy. I'd settle for just a code that opens the .csv in Notepad for me?
I try...
VBA Code:
Sub WHATEVER()
CreateObject("Shell.Application").Open ("filepath\20221215.csv")
End Sub
But of course this just opens the .csv in excel.
Could any of you fine folks help me out?