required pasteing

N

Noctos

could i create a macro which would collect information from fixed cells
everytime it was initiated and the when it came tp paste th information
say in b1 it would move down a cell and paste the info each time the
macro was initiated
 
P

Peter Atherton

Yes, smething like the following.

Sub MyPaste()
set data= Range("G24") 'the fixed cell
dest = application.worksheetfunction.counta(range("B:B")+1
dest =data

End Sub

Not tested

Regards
Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top