Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am using vba in one workbook to make changes in a target workbook. I used
application.cutcopymode=false to clear the clipboard, but it doesn't seem to work correctly. I have the clipboard visible to the side of the window, and all of the copy/paste operations remain in the clipboard. Here is the code I am using: Option Explicit Sub auto_open() Dim FileName As Variant Application.ScreenUpdating = False FileName = Application.GetOpenFilename If FileName = False Then Exit Sub Dim WB As Workbook Set WB = Workbooks.Open(FileName) ThisWorkbook.Worksheets("Sheet1").Activate ActiveSheet.Cells.Copy WB.Worksheets("Sheet1").Range("A1").PasteSpecial WB.Worksheets("Sheet2").Range("A3:D3").Copy WB.Worksheets("Sheet2").Range("A4:D4").PasteSpecia l xlPasteFormats WB.Worksheets("Sheet2").Range("B5:G5").Copy WB.Worksheets("Sheet2").Range("B7:G9").PasteSpecia l xlPasteFormats Application.CutCopyMode = False WB.Worksheets("Sheet1").Activate ActiveSheet.Range("A1").Select Application.CutCopyMode = False Application.ScreenUpdating = True ThisWorkbook.Close savechanges:=False End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
What's the best way to toggle between true and false in Excel? Hiall, My excel work involves a lot of toggling between true and false (booleantypes) ... and it's very repetitive... Is there a way to select a bunch ofcells, and press a key short-cu | Excel Discussion (Misc queries) | |||
$C$1972,2,FALSE, $C$1972,3,FALSE is ok, But $C$1972,4,FALSE Give # | Excel Worksheet Functions | |||
IF(a1="x",(vlookup 18K rows,2,false),(vlookup 18K,3,false)) RAM? | Excel Worksheet Functions | |||
Counting dates in multiple work sheets and work books | Excel Discussion (Misc queries) | |||
Is there away to keep "auto save" from jumping to the first work sheet in the work book? | New Users to Excel |