Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / New Users / August 2007

Tip: Looking for answers? Try searching our database.

Need help

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
RoadKing - 25 Aug 2007 19:59 GMT
Good afternoon:

Is it possible to enter data on one worksheet and populate another protected
worksheet in succession and remain there after the original data is erased
from the "working worksheet"?

Please keep in mind I am not a programmer.  Any help is appreciated.

Thanks in advance
John
Sandy Mann - 25 Aug 2007 20:33 GMT
Roadking,

For it to remain there after the original data is erased then you will need
VBA.

Is it from the same cell in the "working sheet"?  Assuming yes then
right-click on the sheet tab and copy and paste this macro into the
Worksheet module:

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
   If Target.Address() <> "$B$4" Then Exit Sub
   ' change $B$4 to your own cell
   MoveIt = Target.Value

   With Sheets("Second Sheet") ' Change to your sheet name
       LastRow = .Cells(Rows.Count, 4).End(xlUp).Row + 1
       ' change the 4 to the Column number that you want
           .Cells(LastRow, 4).Value = MoveIt
   End With
End Sub

Signature

HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

sandymann2@mailinator.com
Replace @mailinator.com with @tiscali.co.uk

> Good afternoon:
>
[quoted text clipped - 6 lines]
> Thanks in advance
> John
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.