J
J-P-W
"Stock Value" Could be anything from 0 to a million or so, and might
include a decimal (12345.67)
I can't find how to do this:
Select Case StockValue
Case 0 To 30000
response.Write("Less than 30000")
Case 30000 To 80000
response.Write("30000 to 80000")
Case 80000 To 180000
response.Write("80000 to 180000")
Case Else ' > 180000
response.Write("Greater than 180000")
End Select
I also tried Case > 0 And <30000 .... and so on
Can anyone advise how to write this select script please?
Thank you
Jon
include a decimal (12345.67)
I can't find how to do this:
Select Case StockValue
Case 0 To 30000
response.Write("Less than 30000")
Case 30000 To 80000
response.Write("30000 to 80000")
Case 80000 To 180000
response.Write("80000 to 180000")
Case Else ' > 180000
response.Write("Greater than 180000")
End Select
I also tried Case > 0 And <30000 .... and so on
Can anyone advise how to write this select script please?
Thank you
Jon