Paste clipboard into new free row

L

Legacy 229392

Guest
Hello

I'm trying to work out how i can copy cells i have copied into the next free row on say Sheet3

So i can keep on pasting and will end up with what i have copied multiple times

Any help appreciated

Thanks
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Something like

Code:
Sheets("Sheet3").Range("A" & Rows.Count).End(xlUp).Offset(1).PasteSpecial Paste:=xlPasteAll
 
Upvote 0
Something like

Code:
Sheets("Sheet3").Range("A" & Rows.Count).End(xlUp).Offset(1).PasteSpecial Paste:=xlPasteAll


with that i get runtime 1004, pastespecial method od range class failed

I have attached the sheet im currently using, sheet 1 is the template, sheet 2 is the data it uses for the vlookup on a1, b1, c1, g1

pretty simple

i have 2 macros on buttons to increase a1 and then one to copy all the data

i want to be able to paste this into sheet 3 really over and over automatically if possible until it runs out of data

http://wehaveany.com/excel/EXCEL%20FORUM2.xlsx
 
Upvote 0
That "link" doesn't go anywhere. Please just post your code like this

[code]
code goes here
[/code]
 
Upvote 0
the link is the file hosted on my server, i've just confirmed its working: Link Removed by Admin

it turns out i have just deleted the macros by mistake, arghhhh :(:(:(

i did have one just to increase a1 and another to copy a1:q26


 
Last edited by a moderator:
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,717
Members
448,985
Latest member
chocbudda

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