C# 中的 Excel 比较
我正在 C# 中逐个单元格地比较两个 Excel 文件。 我想为目标文件中不匹配的那些单元格着色。 如何在不创建另一个文件的情况下完成它..
I am comparing two excel files cell by cell in c#.
I want to color those cells which are not matching in the target file.
How can it be done without creating another file..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须打开 Excel 实例并查找单元格吗?那么改变细胞的路就真的不远了。您是否在活动单元格之一上尝试过
Cell.Font.Color
?You have to instances of excel open and look up cells? Then the way to changing a cell is not really far. Have you tried
Cell.Font.Color
on one of the active cells??