Excel VBA,输出为txt文档,一个很简单的问题。

2024-11-27 11:56:44
推荐回答(2个)
回答1:

您好,代码改成这样

Sub CommandButton1_Click()

Open "D:\new.txt" For Output As #1
Print #1, Right(Sheets(1).Cells(1, 1).Value, 2)
Close #1

End Sub

回答2:

Print #1, Right(Sheets(1).Cells(1, 1).Value, 2)