以编程方式将 Excel 文本发送到列
我们有一个可以读取 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须在工作簿中创建宏才能运行向导。
该宏的运行方式如下:
您可以在 Excel 本身中或使用 OA 创建宏。
然后当您需要运行向导时,您也可以从 OA 执行此操作。
哈!
You have to create a macro in the workbook to run the Wizard.
The macro runs along the lines of:
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!