My question is as follows.
How can I apply the following excel formula
=COUNTIF('OtherSheet'!A2:A1500,"<>"&"")
to a specific cell, via C#
code?
I ask this because i can't use my following code because of the multiple.
Code as follows:
xlWorkingSheet.Cells[4, 2].Formula = "=COUNTIF('OtherSheet'!A2:A1500,"<>"&"")";
Any sort of help would be appreciated.