0

我想为我在 VBA 中的标准偏差计算动态选择行数。

目前我有以下代码:

Sub Stdev()

Dim x as integer
x=10
    Range("E1").Select
    ActiveCell.FormulaR1C1 = "=STDEV(R[1]C:R[5]C)"
    Range("E1").Select
    ActiveCell.FormulaR1C1 = "=STDEV(R[1]C:R[x]C)"'this is my attempt at dynamic calculation
End Sub

如何更正它以选择 x 中指定的行数?

4

1 回答 1

1

尝试:

Range("E1").FormulaR1C1 = "=STDEV(R[1]C:R[" & x & "]C)"
于 2013-02-05T20:17:09.283 回答