Auto Paste

  • Thread starter Thread starter umpie
  • Start date Start date
U

umpie

Please Help

I need to find a way to have whatever data I imput on one page in a
certin cell to appear on another page (within the same file) in a
certin cell. PLease Help
 
Right click on the sheet tab>view code>insert this>save workbook
Change to suit your needs.Works from cell a1 to copy to sheet3 cell d5

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address <> "$A$1" Then Exit Sub
[sheet3!d5] = Target
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Excel 2002 to 2007 - issues with Macro / VB? 6
Excel changed into Word 4
Hide or Freeze 3
file not found when opening the file 2
Find function 1
Macro for cell select 5
savings contacts 1
last date saved 1

Back
Top