我在 Excel 的 Visual Basic 中有这段代码。我尝试不使用 a、b 和 c,只使用 Range("C2")、F2、G2,但它也不起作用。我真的不知道为什么这不起作用,有人可以帮助我吗?:)
Sub pourcentremiseport()
Dim a As Integer
Dim b As Integer
Dim c As Integer
a = Range("C2").Value
If a < 6 Then
b = 9.6
c = 0
ElseIf a >= 6 And a < 20 Then
b = 0
c = 10
Else
b = 0
c = 25
End If
b = Range("F2").Value
c = Range("G2").Value
End Sub