jdash

New Member
Joined
Mar 14, 2011
Messages
18
I am trying to create a procedure runs when a workbook is opened (Event: On_Open) that does that following:

1) Open a file with the text "ELA" in it from the same folder
2) Copy a specific set of cells from the first opened workbook (i.e. H15:I17)
3) Paste those cells into the "ELA" workbook in cell H1
4) Save and close both


Having trouble with how to open workbook with specific text of "ELA".


Thanks for the help.
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Try this macro in the code module for ThisWorkbook. Change the sheet names to suit your needs. The macro assumes that the workbook is a macro-enabled file with an "xlsm" extension. If it isn't a macro enabled file, save it as such.
Code:
Private Sub Workbook_Open()
    Application.ScreenUpdating = False
    Dim srcWb As Workbook
    Set srcWb = ThisWorkbook
    Dim desWB As String
    Dim FileName As String
    srcWb.Sheets("Sheet1").Range("H15:I17").Copy
    desWB = ThisWorkbook.Path & "\*ELA*.xls*"
    FileName = Dir(desWB)
    Workbooks.Open ThisWorkbook.Path & "\" & FileName
    Sheets("Sheet1").Range("H1").PasteSpecial
    ActiveWorkbook.Close True
    srcWb.Close True
    Application.ScreenUpdating = True
End Sub
 
Last edited:
Upvote 0
Thanks for the quick reply all working .
Need some help with one more step. I want to copy and paste the formulas from the previous paste down the active columns.
Specifically after paste..
1) select H2:I2 and copy
2) select all the cells in those columns that are active (have data to the left)
3) then paste into corresponding H and I cells

Here is the code I have to date (along with yours) the code in red is where I think I am having the problem....

Private Sub Workbook_Open()
' Updates SBAC ELA and Math downloads into Excel. Sets these files up for import into Access GATE database
' Copies PercentRank FX and GATE Score into SBAC ELA and Math workbooks.

Application.ScreenUpdating = False

Dim srcWb As Workbook
Set srcWb = ThisWorkbook
Dim desWB As String
Dim FileName As String
Dim LastRow As Long


srcWb.Sheets("ELA and MATH Standards").Range("H17:I18").Copy
desWB = ThisWorkbook.Path & "\*SBAC ELA*.xls*"
FileName = Dir(desWB)
Workbooks.Open ThisWorkbook.Path & "" & FileName

Range("H1").Select
ActiveCell.PasteSpecial xlPasteAll


Range("H2:I2").Select
Application.CutCopyMode = False

Range("A2").Select
Range(Selection, Selection.End(xlDown)).Select
LastRow = Application.Selection.Cells.Count - 1
Range("H3:I" & LastRow).Select

ActiveSheet.PasteSpecial xlPasteAll
' Application.Selection.Cells.PasteSpecial xlPasteAll


Range("J2").Select

ActiveWorkbook.Close True

srcWb.Close True
Application.ScreenUpdating = True


Thanks for your help
 
Upvote 0
See if this works for you:
Code:
Private Sub Workbook_Open()
    ' Updates SBAC ELA and Math downloads into Excel. Sets these files up for import into Access GATE database
    ' Copies PercentRank FX and GATE Score into SBAC ELA and Math workbooks.
    Application.ScreenUpdating = False
    Dim srcWb As Workbook
    Set srcWb = ThisWorkbook
    Dim desWB As String
    Dim FileName As String
    Dim LastRow As Long
    srcWb.Sheets("ELA and MATH Standards").Range("H17:I18").Copy
    desWB = ThisWorkbook.Path & "\*SBAC ELA*.xls*"
    FileName = Dir(desWB)
    Workbooks.Open ThisWorkbook.Path & "" & FileName
    Range("H1").PasteSpecial xlPasteAll
    Range("H2:I2").AutoFill Destination:=Range("H2:I" & Range("A" & Rows.Count).End(xlUp).Row)
    ActiveWorkbook.Close True
    srcWb.Close True
    Application.ScreenUpdating = True
End Sub
 
Upvote 0
This worked perfectly. Many thanks for the prompt and valuable response!!



See if this works for you:
Code:
Private Sub Workbook_Open()
    ' Updates SBAC ELA and Math downloads into Excel. Sets these files up for import into Access GATE database
    ' Copies PercentRank FX and GATE Score into SBAC ELA and Math workbooks.
    Application.ScreenUpdating = False
    Dim srcWb As Workbook
    Set srcWb = ThisWorkbook
    Dim desWB As String
    Dim FileName As String
    Dim LastRow As Long
    srcWb.Sheets("ELA and MATH Standards").Range("H17:I18").Copy
    desWB = ThisWorkbook.Path & "\*SBAC ELA*.xls*"
    FileName = Dir(desWB)
    Workbooks.Open ThisWorkbook.Path & "" & FileName
    Range("H1").PasteSpecial xlPasteAll
    Range("H2:I2").AutoFill Destination:=Range("H2:I" & Range("A" & Rows.Count).End(xlUp).Row)
    ActiveWorkbook.Close True
    srcWb.Close True
    Application.ScreenUpdating = True
End Sub
 
Upvote 0
You are very welcome. :)
 
Upvote 0

Forum statistics

Threads
1,215,537
Messages
6,125,393
Members
449,222
Latest member
taner zz

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top