R
Riddler
I have a database set up in Excel 2003 to track RFQ numbers and info
for each. I would like to use named ranges to store and retrieve info
for each entry. The list below is a simplified version of my database.
I have range names for each column but no range names for the rows. How
can I refer to the "Supplier" of ID# RFQ1B ?
I was using
a=range("RFQ1B Supplier").value
to return the intersection range value but it only works when each row
has a range name(like "RFQ1B"). This database will continue to grow in
length and I would like to not have to create range names for every row
although it does work. I woudl also like to not have to just loop down
the first column until I found a match and return the row number. I was
looking at the database query a bit but I am not sure how to set that
up and if it would be robust enough for a ever growing list.
ID RFQ Rev Supplier
RFQ1A 1 A XYZ
RFQ1B 1 B ABC
RFQ2A 2 A XYZ
RFQ3A 3 A NOP
RFQ3B 3 B XYZ
RFQ4A 4 A ABC
Thanks for any help I can get.
Scott
for each. I would like to use named ranges to store and retrieve info
for each entry. The list below is a simplified version of my database.
I have range names for each column but no range names for the rows. How
can I refer to the "Supplier" of ID# RFQ1B ?
I was using
a=range("RFQ1B Supplier").value
to return the intersection range value but it only works when each row
has a range name(like "RFQ1B"). This database will continue to grow in
length and I would like to not have to create range names for every row
although it does work. I woudl also like to not have to just loop down
the first column until I found a match and return the row number. I was
looking at the database query a bit but I am not sure how to set that
up and if it would be robust enough for a ever growing list.
ID RFQ Rev Supplier
RFQ1A 1 A XYZ
RFQ1B 1 B ABC
RFQ2A 2 A XYZ
RFQ3A 3 A NOP
RFQ3B 3 B XYZ
RFQ4A 4 A ABC
Thanks for any help I can get.
Scott