C
Christina
I have the following code...
Dim a As Double
Dim b As Double
Dim L As Double
Dim q As Double
Dim r As Double
Dim s As Double
Dim t As Double
Dim u As Double
f 10100 <= Station < 11200 Or 12500 <= Station < 14040 And
Ramp = "FRANKLIN" And CutFill = "C" Then
a = 1.5
b = a
q = -0.02
r = 0.01
s = 0.33
ElseIf 10100 <= Station < 11200 Or 12500 <= Station <
14040 And Ramp = "FRANKLIN" And CutFill = "F" Then
a = 0
b = 8
q = -0.02
r = 0.01
s = -0.33
End If
My problem is that the code is not assigning the variables
b through s a value. The "a" variable works fine and is
1.5 in the immediate view as it should be. Does anyone
know why the other variable isn't working?
Dim a As Double
Dim b As Double
Dim L As Double
Dim q As Double
Dim r As Double
Dim s As Double
Dim t As Double
Dim u As Double
f 10100 <= Station < 11200 Or 12500 <= Station < 14040 And
Ramp = "FRANKLIN" And CutFill = "C" Then
a = 1.5
b = a
q = -0.02
r = 0.01
s = 0.33
ElseIf 10100 <= Station < 11200 Or 12500 <= Station <
14040 And Ramp = "FRANKLIN" And CutFill = "F" Then
a = 0
b = 8
q = -0.02
r = 0.01
s = -0.33
End If
My problem is that the code is not assigning the variables
b through s a value. The "a" variable works fine and is
1.5 in the immediate view as it should be. Does anyone
know why the other variable isn't working?