views:

548

answers:

2

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?

A: 

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

Oskar Kjellin
A: 

Refer to MSDN: http://msdn.microsoft.com/en-us/library/bb404903.aspx

KMan