Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi there,
below find the code, which I put into the workbook_open event. When I open my file, Sheet3 will be active On Sheet1 the cells getting selected, copied and their values pasted back. Everything works fine, and after the code has ended its job, Sheet3 is active, but when I manually change to Sheet1, I can see, that all cells had been selected before. (They have this dark appearance, not the flickering frame) How do I get only cell A1 selected? It should also happen in the background, without having to select Sheet1 first. Private Sub Workbook_Open() ' Application.ScreenUpdating = False If Now() #2/3/2005# Then '#month/day/year#!!!! With Worksheets("Sheet1").Cells .Copy .PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _ False, Transpose:=False Application.CutCopyMode = False End With End If ActiveWorkbook.Save Application.ScreenUpdating = True End Sub Thanks for any advice. Regards, Norbert |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Pasting a Selection as a Picture | Links and Linking in Excel | |||
Pasting Selection In First Blank Row | Excel Discussion (Misc queries) | |||
how do get rid of a selection after pasting | Excel Programming | |||
pasting formulas into a selection | Excel Worksheet Functions | |||
pasting formulas into a selection | Excel Programming |