Copy--> Paste problem

thewiseguy

Well-known Member
Joined
May 23, 2005
Messages
954
Office Version
  1. 365
Platform
  1. Windows
Hi everyone,

In sheet 2 cell A1, I would like it to equal sheet!A1.

In sheet 2 cell A4, I would like it to equal sheet1!A2.


Is there a way I can make this easy on myself????


TIA.


-m
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Is this going to continue on down the column? i.e.
Sh2 A1 = Sh1 A1
Sh2 A4 = Sh1 A2
Sh2 A7 = Sh1 A3
Sh2 A10 = Sh1 A4
Sh2 A13 = Sh1 A5
 
Upvote 0
Is this going to continue on down the column? i.e.
Sh2 A1 = Sh1 A1
Sh2 A4 = Sh1 A2
Sh2 A7 = Sh1 A3
Sh2 A10 = Sh1 A4
Sh2 A13 = Sh1 A5



yes.
 
Upvote 0
In Sheet2 cell A1 use this formula:
Code:
=INDIRECT("Sheet1!A"&((ROW(A1)-1)*3)+1)
and copy it down the column.
 
Upvote 0
In Sheet2 cell A1 use this formula:
Code:
=INDIRECT("Sheet1!A"&((ROW(A1)-1)*3)+1)
and copy it down the column.



ok now what if sheet2 A1 is really E14 and sheet 1 A1 is really sheet1 A5?

does the formula change?
 
Upvote 0
It would depend whether the rows are still 3 apart each time, would it be:
E14=A5
E15=A8
E16=A11
etc?
 
Upvote 0
It would depend whether the rows are still 3 apart each time, would it be:
E14=A5
E15=A8
E16=A11
etc?

essentially it would look like this:


sheet 1 sheet 2


A5 E14 = A5
A6 E17 = A6
A7 E20 = A7
A8 E23 = A8
 
Upvote 0
Ok, in Sheet2 E14 use this:
Code:
=INDIRECT("Sheet1!A"&(ROW(E14)+1)/3)
then copy it down column E, you will get a #REF error in E15, E16,E18,E19,E21 etc.

Alternatively, just copy and paste that formula into the cells in column E that you want them, i.e. E14,E17,E20,E23.
 
Upvote 0
Ok, in Sheet2 E14 use this:
Code:
=INDIRECT("Sheet1!A"&(ROW(E14)+1)/3)
then copy it down column E, you will get a #REF error in E15, E16,E18,E19,E21 etc.

Alternatively, just copy and paste that formula into the cells in column E that you want them, i.e. E14,E17,E20,E23.


ahh that worked perfectly. thank you very much!
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,187
Members
449,071
Latest member
cdnMech

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