Help! I want to to copy information from one cell in sheet 3 to sheet 1, 2 and sheet 4

tlang

New Member
Joined
Mar 25, 2011
Messages
8
Hello, I need help! I am using 3 to 4 sheets in one workbook. I want to to copy information from one cell in sheet 3 to sheet 1, 2 and sheet 4. How would I do this?
Tlang
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Something as simple as this:

Sub copy()
Dim x As Integer
Dim y As Integer
x = 1
y = 1
Sheets("Sheet1").Cells(x, y) = Sheets("Sheet3").Cells(x, y)
Sheets("Sheet2").Cells(x, y) = Sheets("Sheet3").Cells(x, y)
Sheets("Sheet4").Cells(x, y) = Sheets("Sheet3").Cells(x, y)
End Sub

This will copy whats in sheet 3 Cell A1 and place it in Sheets 1, 2, 4 Cell A1.

Jesse
 
Upvote 0

Forum statistics

Threads
1,224,514
Messages
6,179,223
Members
452,896
Latest member
IGT

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