Hello,
I’m trying to set a fix value for the entire column. Is there a way to do this without doing a loop through each cell/row?
Thanks.
Hello,
I’m trying to set a fix value for the entire column. Is there a way to do this without doing a loop through each cell/row?
Thanks.
Hi,
Hi Amjad,
Thank you for the tips. I also found another alternative with the following code:
string formula = "=“Test123"”;
sheet.Cells[1,5].SetSharedFormula(formula, sheet.Cells.MaxDataRow, 1);
Any advice on which method is better in term of performance?
Hi,