I used another program with user programmable aspects to do the same thing i want here. I have a named range "BarSize" that contains a column
with #3, #4 etc... I used Data Validation to Create a dropdown list. I need another cell to equal the "Weight" of the barsize selected. the code i
used is similar to:
IF Value.("Q12")="#3" then
Value.("R12")=0.375
ElseIf Value.("Q12")="#4" then
Value.("R12")=0.668
ElseIf Value.("Q12")="#5" then
Value.("R12")=1.043
ElseIf Value.("Q12")="#6" then
Value.("R12")=1.502
ElseIf Value.("Q12")="#7" then
Value.("R12")=2.044
ElseIf Value.("Q12")="#8" then
Value.("R12")=2.670
ElseIf Value.("Q12")="#9" then
Value.("R12")=3.400
ElseIf Value.("Q12")="#10" then
Value.("R12")=4.303
ElseIf Value.("Q12")="#11" then
Value.("R12")=5.313
ElseIf Value.("Q12")="#14" then
Value.("R12")=7.650
ElseIf Value.("Q12")="#18" then
Value.("R12")=13.600
I just don't know how to make it work in Excel 2010. I'd appreciate any help!
Bookmarks