0

如果有人能提供帮助,我真的很感激;我已经为此工作了一段时间...

我只想在一个单元格中定义countif的公式,代码如下:

Range("E" & PLrowstart).Formula = "= CountIf($B$PLrowstart:$B$PLrowend" & ",B2)"

PLrowstart 和 PLrowend 是我在行前设置的整数变量。count if 的范围是 range("B" & PLrowstart & ":B" & PLrowend)。我也尝试了其他方法,都没有成功...

TIA。

4

2 回答 2

0
Range("E" & PLrowstart).Formula = "= CountIf($B$" & PLrowstart & ":$B$" & PLrowend & ",B2)"
于 2013-07-09T16:53:08.757 回答
0

尝试这个

Sub SetFormula()


PLrowstart = 2
PLrowend = 4

Range("E" & PLrowstart).Formula = "=CountIf($B$" & PLrowstart & ":$B$" & PLrowend & ",B2)"


End Sub
于 2013-07-09T16:55:01.220 回答