Copy and paste special from Active Cell to end

Cluelessonmacros

New Member
Joined
Mar 25, 2023
Messages
5
Office Version
  1. 365
Platform
  1. Windows
I am clueless so any help is very much appreciated
I want to copy and paste multiple formulas from the last active cell
Column A will always have data dropped in
I want to copy formulas from H2 to Y2 from the last active cell in Column H to Y (this is because we remove the formulas on a lot of the data to preserve amendments and the data needs to go to to the end of the data in column A

I was trying autofill but it overwrites all the data already in and we manually amend some of this data later

Found a few things but not sure how to quite make it work (I have basic record and some basic amend knowledge on macros only I am a newbie!)

Any help is appreciated. Thank you
This is what I was thinking not sure how on track I am
Dim LastRow As Long
Sheets("Sheet 1").Select
LastRow = Range("A" & Rows.Count).End(xlUp).Row
ActiveCell.AutoFill Destination:=Range("H2:Y2" & LastRow)
 
OOPS ... :oops:very sorry rstsrt is the variable and should read rstart ...
James006, you are amazing, I have been trying to do this for a couple of weeks now whenever I had a spare 10 minutes and it just wasn't working. Thank you ever so much for your time and for your solution. Macros for Dummies is going to be ordered!
 
Upvote 0

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.

Forum statistics

Threads
1,213,510
Messages
6,114,034
Members
448,543
Latest member
MartinLarkin

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