I have a work book all data validation is on sheet1 and sheet2 holds two combo boxes that validate against each other through vba. I am trying to do a vlookup that validates to 2 named ranges incompasing 2 columns per name. I want to do this as aposed to puting everything in just two columns and naming the whole range OpRate to keep my sheet from being thousands of lines.
=Sheet1!$C$1:$D$116 ----- Named DneedleRate
=Sheet1!$E$1:$F$35 -------Named ZigZagRate
I want column "E" on sheet two to vlookup c2 and validate against the named ranges
I currently have all data in two columns named OpRate and it is getting out of hand ( length) and I am using (this is working, just to stinking long for records)
=IF(ISNA(VLOOKUP(C2,OpRate,2,0)),"",VLOOKUP(C2,OpRate,2,0))
There will eventualy be about 15-20 named ranges I would like to vlookup against
Thanks for any and all help
=Sheet1!$C$1:$D$116 ----- Named DneedleRate
=Sheet1!$E$1:$F$35 -------Named ZigZagRate
I want column "E" on sheet two to vlookup c2 and validate against the named ranges
I currently have all data in two columns named OpRate and it is getting out of hand ( length) and I am using (this is working, just to stinking long for records)
=IF(ISNA(VLOOKUP(C2,OpRate,2,0)),"",VLOOKUP(C2,OpRate,2,0))
There will eventualy be about 15-20 named ranges I would like to vlookup against
Thanks for any and all help