Annoying Cut/Paste problem!!!

adambc

Active Member
Joined
Jan 13, 2020
Messages
377
Office Version
  1. 2019
  2. 2016
Platform
  1. Windows
This was my original post My brain won't work! - at the time the requirement went away - but now it's back!!!

On WS1 I have a list starting in cell B20 (there is a header in B19) ...

On WS2 I have a "table" with 4 columns starting in cell B15 ...

I want to populate the table like this ...

WS2/B15 = WS1/B20 / WS2/C15 = WS1/B21 / WS2/D15 = WS1/B22 / WS2/E15 = WS1/B23
WS2/B16 = WS1/B24 / WS2/C16 = WS1/B25 / WS2/D16 = WS1/B26 / WS2/E16 = WS1/B27
etc etc

BUT ... I must be able to CUT/Paste the list on WS1 and update the "table" on WS2 such that the above remains ...

... I have used OFFSET as suggested in my original post ie =OFFSET(WS1!$B$20, (((ROW()-15)*4)-1)+(COLUMN()-1),0,1,1) ...

... and I can now CUT/Paste the list on WS1 to my hearts content, PROVIDED I DON'T CUT/PASTE WS1/$B$20 - if I do the $B$20 gets reset to wherever I Paste it!!!

Any ideas???

Thanks ...
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Any ideas???
Offset from the header instead of the first data row.
Best guess with the information provided.
Excel Formula:
=OFFSET(WS1!$B$19, (((ROW()-1)*4))+(COLUMN()-1),0,1,1)
 
Upvote 0
Solution
Of course ...

Seems to be working OK ...

Thanks ...
 
Upvote 0

Forum statistics

Threads
1,215,463
Messages
6,124,963
Members
449,200
Latest member
indiansth

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