У меня есть таблица в Excel
col1 col2
2 4
1 5
5 3
8 7
Мне нужно сравнить 2 столбца, col1 и col2. Если значения из столбца col2> col1, то заполните ячейку в столбце col2 красным цветом. Если значения из столбца col2
я написал пример метода, но не знаю, как его исправить дальше.
private static void BackroundColor(string filePathNameExcel)
{
int i = 1;
using (XLWorkbook wb = new XLWorkbook(filePathNameExcel))
{
IXLWorksheet ws = wb.Worksheet("sheetMy");
int col = 1;
for (int j = 1; j <= col; j++)
{
if (j == 3)
{
for (int irow = 1; irow <= i; irow++)
{
if (ws.Cell(irow, 3).GetString() == "2")
{
string dat = ws.Cell(irow, 3).GetString();
ws.Cell(irow, 1).Style.Fill.BackgroundColor = XLColor.Red;
}
}
}
}
wb.SaveAs(filePathNameExcel, true);
}
}