使用 VB 将固定宽度文本导入 Excel 2003

发布于 2024-07-15 05:57:41 字数 160 浏览 7 评论 0原文

我有一个固定宽度的文本文件,我想自动将每行中的某些空格导入到 Excel 2003 工作表的特定单元格中。 你能帮助我吗?

我将重新表述我的问题,因为前一个问题不太清楚。 我需要读取特定字符(即 12-17、23-29)并将它们放入 Excel 工作表中。 这可能吗?

I have a fixed width text file and I want to automatically import certain spaces in each line into specific cells of an Excel 2003 sheet.
Can you help me?

I will re-phrase my question because the previous one wasn't very clear.
I need to read specific characters (i.e. 12-17, 23-29) and place them inside a excel sheet.
Is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦萦几度 2024-07-22 05:57:41

是的,这是可能的。
检查导入向导中的“固定长度”选项,并告诉 Excel 每个字段有多少个字符。

Yes it's possible.
Check the "Fixed length" option in the import wizard and tell Excel how many characters there is for each field.

享受孤独 2024-07-22 05:57:41

Excel 在读取文本时会解析出所有空格和前导零。
如果可以,请将文本文件格式化为带有分隔值的 CSV,并将值格式化为公式,如下所示:

=" Value 1",="0000",="     more spaces     ",="    "

这将保留值。

Excel will parse out any whitespaces and leading zeros when reading text.
If you can, format your text file as CSV with delimited values, and format your values as formulas, like this:

=" Value 1",="0000",="     more spaces     ",="    "

This will preserve the values.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文