我有一个公式可以得到最接近给定值的值,即
=SMALL(R1C1:R1C144,COUNTIF(R1C1:R1C144,""<"" &8)+1 )
将给出最接近 8 的值。
我想使用变量而不是直接数字“(8)”
请帮我。这是我当前的代码
Private Sub CommandButton1_Click()
Dim col As Integer
col = Me.TextBox1.Value
ActiveCell.FormulaR1C1 = "=SMALL($A$1:$EN$1,COUNTIF($A$1:$EN$1," < "&col)+1)"
End Sub