I am using following code to apply style to cell.
But Style “Good” is present in Office US edition.
In other language Office editions its name is different.
Is there any other way to assign the style
Range cell;
cell.EntireRow.Style = "Good";
I think Workbook.Styles[index] can be used to assign style.
but don’t know the exact index of the styles : Normal, Good, Bad also will it differ in other language Office editions.
Another solution is to assign all style values manually.
but problem in this solution is to get all values of the styles Normal, Good, Bad.
I have used indexes to assign styles.