I want to apply the % (percentage) number format using open XML C#
I have numeric value 3.6 that I want to display that number in excel as `3.6%.
How do I a
You can do it in a simple way. If you want to apply it on single cell then do this,
worksheet.Cell(9, 10).Style.NumberFormat.Format = "#,##0.00\\%";
And If you want to apply it on a Range of Cells then do this,
worksheet.Range(9, 10, 15, 10).Style.NumberFormat.Format = "#,##0.00\\%";
you can also find more formats Here, and also you can find the same from Excel as well.