+ Reply to Thread
Results 1 to 2 of 2

Copying Data to a hidden Sheet

Hybrid View

  1. #1
    Registered User
    Join Date
    04-12-2005
    Posts
    2

    Angry Copying Data to a hidden Sheet

    Hi,

    I need to copy data to a sheet that is hidden. eg the user doesnt see the copy process. Can someone help me out... (It is C:\Dump that needs to be hidden) Cheers.

    Workbooks.Open Filename:="C:\Dump.xls"
    Rows("2:75").Select
    Range("B2").Activate
    Selection.Delete Shift:=xlUp
    Windows("25-10-04.xls").Activate
    Selection.Copy
    Windows("Dump.xls").Activate
    Windows("25-10-04.xls").Activate
    Selection.Copy
    Windows("Dump.xls").Activate
    Rows("2:2").Select
    Range("B2").Activate
    ActiveSheet.Paste
    Application.CutCopyMode = False
    ActiveWorkbook.Save
    ActiveWindow.Close
    MsgBox ("Completed Copying")

  2. #2
    Forum Contributor
    Join Date
    11-16-2004
    Posts
    282

    Hide macro actions while code is running

    You can use the ScreenUpdating property to hide your macro actions...From VB Help:
    ScreenUpdating Property

    True if screen updating is turned on. Read/write Boolean.

    Remarks

    Turn screen updating off to speed up your macro code. You won't be able to see what the macro is doing, but it will run faster.

    Remember to set the ScreenUpdating property back to True when your macro ends.
    Use it in your code like this:
    Application.ScreenUpdating = False
    '...your code goes here...
    Application.ScreenUpdating = True
    Hope this helps,
    theDude

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1