The formula works fine in previous versions, you need to save the file in
xls format, do a save as after hitting the office button and you'll se what
I mean
--
Regards,
Peo Sjoblom
"shawn" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> Thanks. I used the hard coded method. Is there a way for this to also work
> in Excel 97-2003 format? It's not a big deal if it won't work, but three
> machines in our office aren't upgraded to Excel 2007.
>
>
> "Peo Sjoblom" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> You can use
>>
>> =IF(A1="","",IF(ISNA(VLOOKUP(A1,Sheet2!$A$2:$B$11, 2,0)),"Incorrect Value
>> Entered",VLOOKUP(A1,Sheet2!$A$2:$B$11,2,0)))
>>
>>
>> replace A1 with the cell where you input the size
>>
>>
>>
>> or hard coded which means you don't need the table in Sheet2
>>
>> =IF(A1="","",IF(ISNA(VLOOKUP(A1,{"A",3.38;"B",2.63 ;"C",2.33;"D",2.04;"E",1.56;"F",1.04;"G",0.65;"H", 0.41;"I",0.41;"J",25},2,0)),"Incorrect
>> Value
>> Entered",VLOOKUP(A1,{"A",3.38;"B",2.63;"C",2.33;"D ",2.04;"E",1.56;"F",1.04;"G",0.65;"H",0.41;"I",0.4 1;"J",25},2,0)))
>>
>>
>>
>> replace A1 with the cell where you input the size
>>
>>
>>
>>
>>
>> --
>> Regards,
>>
>> Peo Sjoblom
>>
>> "shawn" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>> Here's what I have currently..
>>>
>>> Sheet1 has my Shipping Manifest.
>>>
>>> Sheet2 has the following data from A1 to B11
>>>
>>> BOX CF
>>> A 3.38
>>> B 2.63
>>> C 2.33
>>> D 2.04
>>> E 1.56
>>> F 1.04
>>> G .65
>>> H .41
>>> I .41
>>> J .25
>>>
>>> I typed that data in, highlighted it all then converted it to a table.
>>>
>>> I think where I am having trouble is the "lookup value"
>>>
>>> I have written what Ron suggested and tried to go through the evaluate
>>> thing to find errors.
>>>
>>
>>
>
>