Fill With Names Ranges

abmyers

New Member
Joined
Jul 28, 2011
Messages
7
Hi thanks in advance. I'm looking for help on getting excel to fill when using named ranges. I'll try to be specific. On Sheet 3. I have a table that occupies P1:X22. In the table I have named column P "COPY ITEM NUMBER", column Q "OFFER SIZE" and column R "TICKER".

On another worksheet tab, sheet 2 I have an Index formula that references the table.

In cell C15

=INDEX(COPY_ITEM_NUMBER, SMALL(etc......)

This works fine when I fill down but I want to be able to fill right. I want cell D15 to fill with:

=INDEX(OFFER_SIZE, SMALL(etc......)

Right now it seems I need to manually edit each column.

help?
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Hi

Try -
Code:
=INDEX((COPY ITEM NUMBER,OFFER SIZE,TICKER),SMALL(etc--),,COLUMNS($C1:C1))

copy across to D15 and E15.

hth
 
Upvote 0
Hi

The formula I specified used the area number option.
You could try -
Code:
=INDEX($P$1:$X$22,SMALL(etc--),COLUMNS($C1:C1))

that's assuming SMALL references the Row position.

hth
 
Upvote 0

Forum statistics

Threads
1,224,587
Messages
6,179,738
Members
452,940
Latest member
Lawrenceiow

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