l_eonandr

New Member
Joined
Feb 18, 2016
Messages
25
Please help if anyone has any ideas;
I have set up an offset to make my print range dynamic (Offset($F$1,o,o,$J$1,4) so as the table expands the print range expands. CountA(I:I)+4 is in J1 to get row count. This works great, however, each month I copy the table and insert the copy in front of the old one then fill with data. I need for the print range to keep the $F$1 in the Offset.
It does not. The $F$1 changes to the new column the table moved to. The print range moves with the old table to the new columns the old table now occupies.

Is there a way of keeping the same columns in the print range, Ie old columns F:I, move table to right 5 columns, now new print range should be F:I, however excel has moved it to follow the table to K-N.
How can I set it for F:I and keep that even when columns are added in front of it? Is it possible?
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
INDIRECT function should do it:

=OFFSET(INDIRECT("Sheet1!$F$1"),0,0,COUNTA(INDIRECT("Sheet1!$J:$J"))+4,4)

and you can also put the value you are calculating in J1 into the formula as well
 
Upvote 0
INDIRECT function should do it:

=OFFSET(INDIRECT("Sheet1!$F$1"),0,0,COUNTA(INDIRECT("Sheet1!$J:$J"))+4,4)

and you can also put the value you are calculating in J1 into the formula as well



Thank you, that work perfectly except I needed to change the count column. The formula to count was in J1 and referred to column I, so I just changed J to I and ...
Worked like a charm.
It didn't dawn on me to use indirect inside of offset.

Thanks again
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,019
Messages
6,122,707
Members
449,093
Latest member
Mnur

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