如何缩短我的 if 语句?有没有其他方法可以缩短它??
F = Strt
E = Strt + A1
I = Strt + A1 + A2
A = Strt + A2 + A1 + A3
b = Strt + A2 + A1 + A3 + A4
c = Strt + A1 + A2 + A3 + A4 + A5
D = Strt + A1 + A2 + A3 + A4 + A5 + A6
G = Strt + A1 + A2 + A3 + A4 + A5 + A6 + A7
H = Strt + A1 + A2 + A3 + A4 + A5 + A6 + A7 + A8
J = Strt + A1 + A2 + A3 + A4 + A5 + A6 + A7 + A8 + A9
If F >= Row Then
asd = 0
ElseIf E >= Row Then
asd = 1
ElseIf I >= Row Then
asd = 2
ElseIf A >= Row Then
asd = 3
ElseIf b >= Row Then
asd = 4
ElseIf c >= Row Then
asd = 5
ElseIf D >= Row Then
asd = 6
ElseIf G >= Row Then
asd = 7
ElseIf H >= Row Then
asd = 8
ElseIf J >= Row Then
asd = 9
Else
End If
还有我的变量..我想知道我是否可以缩短它..如果回答非常感谢