how do I paste copied formulae without losing refences to tables?

  • Thread starter Thread starter Dave N
  • Start date Start date
D

Dave N

I have created a formula that uses a lookup table. I want to copy this
formula and paste it into cells in a column. However, the refence to the
table change as I repeat paste the formula into the subsequent cells. Is
there a way around it?
 
You could name the table
select the table
Insert|Name|Define (in xl2003 menus)

Or you could make sure that the address is written with absolute references.
=vlookup(a1,sheet2!$a$1:$b$33,2,false)

Or if the table is on a dedicated sheet, just use the entire column:
=vlookup(a1,sheet2!a:b,2,false)
 
You could name the table
select the table
Insert|Name|Define (in xl2003 menus)

Or you could make sure that the address is written with absolute references.
=vlookup(a1,sheet2!$a$1:$b$33,2,false)

Or if the table is on a dedicated sheet, just use the entire column:
=vlookup(a1,sheet2!a:b,2,false)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top