【发布时间】:2020-11-25 03:48:58
【问题描述】:
我将文件保存为文本格式。打开后,文件上似乎有引号。
它显示为“16,347.21”。我是德语格式。应该是 16,347.21。
如何删除它?
Dim path As String
Dim filename As String
path = Range("FolderPath").Text
filename = Range("FileName").Text
Application.DisplayAlerts = False
ActiveWorkbook.SaveAs filename:=path & "\" & filename & ".txt", FileFormat:=xlText
ActiveWindow.Close
MsgBox "Data for Upload Saved"
Application.DisplayAlerts = True
【问题讨论】: