Excel 中的单元格颜色更改使用 C# 中的条件格式
我已经成功将数据表导出到Excel。现在我必须使用 C# 在 Excel 工作表中使用条件格式更改一些单元格颜色。例如,如果单元格包含文本“Cat”,则应以绿色显示,如果单元格包含文本“Dog”,则应以蓝色显示。现在我该怎么做呢?
I have exported datatable to Excel successfully. Now I have to change some cell color using Conditional formatting in Excel sheet using C#. For example if a cell contains text as "Cat" it should be display in Green color and if a cell contains text as "Dog" it should display in blue Color. Now how can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
单击单元格并从菜单中选择“条件格式”。然后选择“等于单元格的规则”之类的内容。填写“Cat”,因为它应该等于并选择您的格式。
检查一下:
http://www.contextures.com/xlcondformat03.html
Click the cell and select "Conditional formatting" from the menu. Then select something like "rules for cells that equals". Fill in "Cat" as what is should be equal to and choose your formatting.
Check this:
http://www.contextures.com/xlcondformat03.html
请参阅 MSDN:http://msdn.microsoft.com/en-us/库/bb404903.aspx
Refer to MSDN: http://msdn.microsoft.com/en-us/library/bb404903.aspx