VBA code not working

Joined
Sep 5, 2023
Messages
30
Office Version
  1. 365
Platform
  1. Windows
Im trying to write a code that will copy all the information from columns A to J from one workbook (daily occurrence) and paste it into another workbook at the end of the last row of data pasted from column A (essentially a rolling data tally).

Also, if "Sheet 1" (worksheet name) always changes daily when I download the report, how can I label it in the code accordingly?


Sheet 1 = the downloaded sheet from 3rd site


Bank rec = is the rolling data tally workbook





Dim m As Long
Dim r As Long
m = Worksheets("Sheet1").Range("A:J" & Worksheets("Sheet1").Rows.Count).End(xlUp).Row
r = Worksheets("Bank rec").Range("A" & Worksheets("Bank rec").Rows.Count).End(xlUp).Row + 1


Worksheets("Sheet1").Range("A1:J" & m).Copy Destination:=Worksheets("Bank rec").Range("A" & r)
Application.CutCopyMode = False
 
What needs to be inputted in the "File Filter" section?

FileFilter:="CSV FIles (*.csv),*.CSV"

FileFilter:="Excel FIles (*.xls*),*.xls*"
 
Upvote 0

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Thank you for your assistance and efforts, is there a way we can just have the "downloaded" report be open and start the code from there instead of retrieving that file?
This change will work if the downloaded CSV file is already open in the same Excel session:
VBA Code:
Sub MyCopyRows()

    Dim file1 As String
    Dim file2 As String
    Dim wb As Workbook
    Dim wb1 As Workbook
    Dim wb2 As Workbook
    Dim lr1 As Long
    Dim lr2 As Long
   
'   Loop through all open workbooks to identify Bank CSV file
    For Each wb In Application.Workbooks
        If Left(wb.Name, 4) = "Bank" And Right(wb.Name, 3) = "csv" Then
            Set wb1 = wb
        End If
    Next wb
   
'   Find last row in column A with data
    lr1 = Cells(Rows.Count, "A").End(xlUp).Row
   
'   Browse to open Bank Transactions File
    file2 = Application.GetOpenFilename(FileFilter:="Excel FIles (*.xls*),*.xls*", Title:="Select monthly Bank Transactions file to be opened")
    Set wb2 = Workbooks.Open(file2)
   
'   Find last row in column A with data
    lr2 = Cells(Rows.Count, "A").End(xlUp).Row
   
'   Copy data from file 1 to file 2
    wb1.Activate
    Range("A1:J" & lr1).Copy
    wb2.Activate
    Sheets("BMO All Transactions").Activate
    Range("A" & lr2 + 1).Select
    ActiveSheet.Paste
    Application.CutCopyMode = False
   
'   Close original CSV file
    wb1.Close
   
'   Save update Excel file
    wb2.Save
      
End Sub

What needs to be inputted in the "File Filter" section?

FileFilter:="CSV FIles (*.csv),*.CSV"

FileFilter:="Excel FIles (*.xls*),*.xls*"
I am not sure what you mean. You should not have to change anything there. Just use it "as-is".
 
Upvote 0
Solution
This change will work if the downloaded CSV file is already open in the same Excel session:
VBA Code:
Sub MyCopyRows()

    Dim file1 As String
    Dim file2 As String
    Dim wb As Workbook
    Dim wb1 As Workbook
    Dim wb2 As Workbook
    Dim lr1 As Long
    Dim lr2 As Long
  
'   Loop through all open workbooks to identify Bank CSV file
    For Each wb In Application.Workbooks
        If Left(wb.Name, 4) = "Bank" And Right(wb.Name, 3) = "csv" Then
            Set wb1 = wb
        End If
    Next wb
  
'   Find last row in column A with data
    lr1 = Cells(Rows.Count, "A").End(xlUp).Row
  
'   Browse to open Bank Transactions File
    file2 = Application.GetOpenFilename(FileFilter:="Excel FIles (*.xls*),*.xls*", Title:="Select monthly Bank Transactions file to be opened")
    Set wb2 = Workbooks.Open(file2)
  
'   Find last row in column A with data
    lr2 = Cells(Rows.Count, "A").End(xlUp).Row
  
'   Copy data from file 1 to file 2
    wb1.Activate
    Range("A1:J" & lr1).Copy
    wb2.Activate
    Sheets("BMO All Transactions").Activate
    Range("A" & lr2 + 1).Select
    ActiveSheet.Paste
    Application.CutCopyMode = False
  
'   Close original CSV file
    wb1.Close
  
'   Save update Excel file
    wb2.Save
     
End Sub


I am not sure what you mean. You should not have to change anything there. Just use it "as-is".
Never mind, it was highlighted yellow and thought something must have been inputted there.
 
Upvote 0
So, does the updated code in my previous post give you what you need then?
 
Upvote 0

Forum statistics

Threads
1,215,094
Messages
6,123,071
Members
449,092
Latest member
ipruravindra

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