Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Excel 方面的技能还不够好,所以我希望你能在这里帮助我。我有一个 Excel 文件,其中 A 列中有数字,B 列中有 300 行的文本。如何使用 A 列文件名在 B 列中的每一行保存一个 txt 文件?
在这里看我的例子:
http://bildr.no/view/1205751
您的代码几乎就在那里:只需在Open语句中包含路径
Open
Open "C:\Temp\" & ce & ".txt" For Output As #1
编辑 为了避免"'s,使用Print而不是Write
"
Print
Write
Print #1, ce.Offset(0, 1)