hello support,
How can I insert an Excel error value, such as #VALUE! into a cell ?
thank you for your much appreictaed help
Hi,
Thanks for your posting and using Aspose.Cells.
Please try this code. I have tested it and it works fine. Let us know your feedback.
C#
Cell c3 = ws.Cells[“B4”];
c3.PutValue("#VALUE!");