dlr

  1. A

    Copy information after last filled row of another sheet

    Hi, can you help me please? I am trying to copy some data from a sheet called "CargaETL" to another called "ETL FXS", where there's already data, so new information should be copied right after the last filled row in "ETL FXS". The macro I am currently using is this one: Sub CopyPasteETLFXS()...
  2. R

    VBA to transfer data from one workbook to another

    I have this particular piece of code that transfer data from a source workbook to a repository workbook. The problem that I am having is that it will not post the data to the bottom of the list. It overwrites the top rows of data. I have tried setting up tables on the destination workbook...
  3. B

    VBA - Paste Data Below last row in a diffrent sheet.

    Sub DailyToWeekly() 'Find Last Row Dim DLR As Long, WLR As Long DLR = Sheets("Daily").Range("D10000").End(xlUp).Row WLR = Sheets("Weekly").Range("D10000").End(xlUp).Row Sheets("Daily").Range("C2:G" & DLR).EntireRow.Copy Destination:=Sheets("Weekly").Range("C1:G" & WLR).End(xlUp).Offset(1, 0)...

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