I created a row and cell like this =
Row Row1 = new Row() { RowIndex = 1 };
Row1.AppendChild(new Cell()
{
CellReference = "A1",
DataType = CellValues.String,
CellValue = new CellValue("Color this")
});
Can anyone please tell me how to color this particular cell using openXml in C#? I don't want to color all the cells, only this particular cell.
Found the SOLUTION = https://learn.microsoft.com/en-us/archive/blogs/chrisquon/stylizing-your-excel-worksheets-with-open-xml-2-0