以编程方式将 Excel 文本发送到列

发布于 2024-10-13 06:24:46 字数 101 浏览 6 评论 0原文

我们有一个可以读取 .xls 文件来提取数据的产品。但我们遇到的一个问题是,在处理文件之前,我们必须使用文本到列向导手动将每一列转换为现有数据的文本类型。我们可以做这个c#和办公自动化吗?

We have a product that reads .xls file to extract data. but one problem we have is before we process the files we had to manually convert each column to text type for existing data using text to column wizard. can we do this c# and office automation?

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

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

发布评论

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

评论(1

長街聽風 2024-10-20 06:24:46

您必须在工作簿中创建宏才能运行向导。
该宏的运行方式如下:

Sub Macro1()
'
   Worksheets("Sheet1").Range("A1:A10").TextToColumns Destination:=Range("A1"), _
        DataType:=xlDelimited, _
        TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=True, Tab:=True, _
        Semicolon:=False, Comma:=False, Space:=True, Other:=False, FieldInfo _
        :=Array(Array(1, 1), Array(2, 1)), TrailingMinusNumbers:=True
End Sub  

您可以在 Excel 本身中或使用 OA 创建宏。

然后当您需要运行向导时,您也可以从 OA 执行此操作

哈!

You have to create a macro in the workbook to run the Wizard.
The macro runs along the lines of:

Sub Macro1()
'
   Worksheets("Sheet1").Range("A1:A10").TextToColumns Destination:=Range("A1"), _
        DataType:=xlDelimited, _
        TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=True, Tab:=True, _
        Semicolon:=False, Comma:=False, Space:=True, Other:=False, FieldInfo _
        :=Array(Array(1, 1), Array(2, 1)), TrailingMinusNumbers:=True
End Sub  

You may create the macro in Excel itself or using OA.

Then when you need to run the wizard, you can do that from OA too.

HTH!

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