Excel'de, Interop dll kullanarak aşağıdaki kodu sahibim.
objWorkSheet.Range[objExcel.Cells[intHeaderRowCnt + 2, 6], objExcel.Cells[intCellRowCnt, 6]].Formula = "=RC[-3]-RC[-1]";
objWorkSheet.Range[objExcel.Cells[intHeaderRowCnt + 2, 6], objExcel.Cells[intCellRowCnt - 1, 6]].FormatConditions.Add(Excel.XlFormatConditionType.xlCellValue, Excel.XlFormatConditionOperator.xlGreater, 0, 0);
objWorkSheet.Range[objExcel.Cells[intHeaderRowCnt + 2, 6], objExcel.Cells[intCellRowCnt - 1, 6]].FormatConditions[1].Interior.ColorIndex = 3;
objWorkSheet.Range[objExcel.Cells[intHeaderRowCnt + 2, 6], objExcel.Cells[intCellRowCnt - 1, 6]].FormatConditions.Add(Excel.XlFormatConditionType.xlCellValue, Excel.XlFormatConditionOperator.xlLess, 0, 0);
objWorkSheet.Range[objExcel.Cells[intHeaderRowCnt + 2, 6], objExcel.Cells[intCellRowCnt - 1, 6]].FormatConditions[2].Interior.ColorIndex = 4;
Office Writer kullanarak Excel'de Koşullu Biçimlendirme nasıl elde edilir?
Verilen kod Interop dll kullanıyor
—
user462997
Lütfen gönderinize yorum eklemeyin, bu bir forum değil, bir Soru ve Cevap sitesi. Bu, yayınınızı düzenlemeniz ve bu fazladan bilgiyi eklemeniz beklendiği anlamına gelir . Bunu yaparak, diğer ziyaretçilerin hikayenin tamamını elde etmek için saçma sapan bir iz okumak zorunda kalmadan bu yazıdaki (Soru) konuyu görebilecekleri anlamına gelir.
—
Dave