Click here to Skip to main content
15,894,539 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How to create formulas in excel in a particular cell while exporting in c#?
Posted
Updated 26-Sep-14 1:56am
v2

1 solution

Try this:

C#
Range cells = workSheet.Range("A1:A1");
cells.FormulaR1C1 = "=MYCOOLFORMULA()";
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900