Extending a formula series but fixing part of it.

dan_pafc

Board Regular
Joined
Aug 16, 2007
Messages
162
I know this must be quite simple but im not sure now to do it.

Ive got a Lookup formula like =LOOKUP(A1,B1:B5,C1:C5), and want to extend the series but so that A1 changes to A2, A3, A4 etc as i drag it down, but i want to keep tha B1:B5,C1:C5 without it changing to B2:B6,C2:C6 etc.

If someone can tell me how to do it please.

Thanks

Dan.
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Put a $ in front of anything that you don't want to change. So here you don't want the numbers to change so you would use:
Code:
=LOOKUP(A1,B$1:B$5,C$1:C$5)

If you didn't want some of the columns to change as you were dragging accross you could use $ in front of some of the letters like this:
Code:
=LOOKUP(A1,$B$1:$B$5,$C$1:$C$5)

HTH,
~Gold Fish
 
Upvote 0

Forum statistics

Threads
1,214,645
Messages
6,120,711
Members
448,984
Latest member
foxpro

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top