Hello.
Let's say, cell A1 contains a function (=SUM(B1:C1)). How can i copy just the summary of cell A1, maybe as text, to another cell? If i use Range.Copy(), it copies the whole function to the new cell...
Regards
sheet.Range["E5"].Text = sheet.Range["B5"].Formula;