特定细胞的配方

时间:2016-12-16 12:06:30

标签: c# excel excel-formula

我的问题如下。

如何应用以下excel公式
通过=COUNTIF('OtherSheet'!A2:A1500,"<>"&"")代码,C#到特定单元格?

我问这个是因为我不能使用以下代码,因为它有多个。

代码如下:

xlWorkingSheet.Cells[4, 2].Formula = "=COUNTIF('OtherSheet'!A2:A1500,"<>"&"")";

任何形式的帮助都将受到赞赏。

1 个答案:

答案 0 :(得分:1)

尝试使用以下解决方案:

xlWorkingSheet.Cells[4, 2].Formula = "=COUNTIF('OtherSheet'!A2:A1500,\"<>\"&\"\")"