Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi guys Hope you can help with a quick query - think I've missed somethin basic cos I've been working on this all week! ![]() I have a column of numbers with a rank (A to X) associated with each let's say col A col B 1.2 A 1.1 B 1.0 C 0.9 D ... and I have a variable, called 'checkcase', which can be any number lik 1.093. What I'd like to do is have the code run down the list in colum A, and select the row (and hence rank) that contains the number closes to the variable (1.1, corresponding to B in this case. In addition, i the number is outside the range of ranks, I want it to do somethin different. My attempt at the code is: Sheets("Sheet1").Range("A1").Activate If checkcase 1.2 ' Say the value is too high for the ranking system Else If checkcase < -1.2 ' Say the value is too low for the ranking system Else Do While ((ActiveCell.Value - checkcase)^2 0.0025) ActiveCell.Offset(1, 0).Activate Loop End If Which works fine, until the variable lies exactly between 2 ranks, sa 1.15. It says "type mismatch". Presumably because the argument i exactly 0.0025 in this case. I tried to solve it with a simple "=" but no luck; it must be getting confused. In this special case o activecell.value - checkcase being 0.0025, ideally I'd like it t select the lower rank. Have a feeling this is a simple mistake / syntax issue - I'm a bit of newbie to VBA. Has anyone got any ideas on what is happening here, or if indeed ther is a better way to handle this? Thanks for your time! Nei -- Mcneiliu ----------------------------------------------------------------------- Mcneilius's Profile: http://www.excelforum.com/member.php...fo&userid=1377 View this thread: http://www.excelforum.com/showthread.php?threadid=44802 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Cells with time constraint | Excel Worksheet Functions | |||
Simple problem, simple formula, no FUNCTION ! | Excel Worksheet Functions | |||
Adding a constraint. | Excel Discussion (Misc queries) | |||
cell value constraint | Excel Discussion (Misc queries) | |||
solver constraint | Excel Worksheet Functions |