Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
The check is made progressively, so you don't need a lower bound
If TemperaturInput <= 10 Then PoFResult = 5 ElseIf TemperaturInput =< 15 Then PoFResult = 4 10 or less would be assigned a 5 in this case because it meets the first criteria. Anything greater than 10 would go to the EndIF to be evaluated. Items Less than or equal to 15 (but only those greater than 10 would get this far) would be assigned 4 -- Regards, Tom Ogilvy "Michael" wrote in message ... Thank's I didn't think about the exact numbers 15, 20 etc Could i use something like this. If TemperaturInput <= 10 Then PoFResult = 5 ElseIf TemperaturInput = 10 And TemperaturInput =< 15 Then PoFResult = 4 or If TemperaturInput <10 Then PoFResult = 5 elseif TemperaturInput = 10 then PoFResult = 5 "Bob Phillips" wrote: You want AND If TemperaturInput < 10 Then PoFResult = 5 ElseIf TemperaturInput 10 And TemperaturInput < 15 Then PoFResult = 4 ElseIf TemperaturInput 15 And TemperaturInput < 20 Then PoFResult = 3 ElseIf TemperaturInput 20 And TemperaturInput < 25 Then PoFResult = 2 ElseIf TemperaturInput 25 Then PoFResult = 1 End If But waht about 15, 20 and 25. You test for and < but not =. -- HTH RP (remove nothere from the email address if mailing direct) "Michael" wrote in message ... Hi! I have a VB formula that look like this. TemperaturInput=FrmSeawaterParameter25CrSDSS.TxtTe mperature.Value If TemperaturInput < 10 Then PoFResult = 5 ElseIf TemperaturInput 10 Or TemperaturInput < 15 Then PoFResult = 4 ElseIf TemperaturInput 15 Or TemperaturInput < 20 Then PoFResult = 3 ElseIf TemperaturInput 20 Or TemperaturInput < 25 Then PoFResult = 2 ElseIf TemperaturInput 25 Then PoFResult = 1 End If My problem is that this is not correct, if a set TemperaturInput=17 on this i will get PoFResult =4 and that is NOT correct! What is wrong? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2007 doesnt show Y-axis values when the values are small. | Charts and Charting in Excel | |||
Exclude #N/A values and Return Numeric values to consecutive cells in Single Row | Excel Worksheet Functions | |||
Search/Filter to find values in another range based on two cell values | Excel Programming | |||
How do I search thr'o column and put unique values in differnt sheet and sum corresponding values in | Excel Programming | |||
Predict Y-values on new X-values based on other actual X and Y values? | Excel Programming |