macro for copying values to the next blank cell

excelNewbie22

Well-known Member
Joined
Aug 4, 2021
Messages
524
Office Version
  1. 365
Platform
  1. Windows
hi,
i tried recording a macro for copying a range of cells,
then goes to the bottom of the table,
to the next empty line
and paste only values,
and it worked well,
but when i trying running it again,
it overwrites the last paste, why?

code:
VBA Code:
Sub copy2()
'
' copy2 macro
'

'
    Range("L2").Select
    Range(Selection, Selection.End(xlToRight)).Select
    Selection.copy
    Selection.End(xlToLeft).Select
    Range("L2").Select
    Selection.End(xlDown).Select
    Range("L7").Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
    Range("L8").Select
End Sub

and also,
can anyone help me out with a macro that change a range in a cell?
like if a9 is:
=a20:g50
i want the macro to change it to:
a19:g50
and so on, subtract 1 every macro run (a18 then a17....)
?
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
when i trying running it again,
it overwrites the last paste, why?
Because your range references don't change. Consider InputBox (type8) to capture either the range to copy, or the range to paste onto (even if that is just the top left cell of the target range) or both.
subtract 1 every macro run (a18 then a17....)
Depends - not hard but if you close the workbook then what? You'll begin with the same seed value all over again (e.g. 20). To avoid that you would have to store the seed value in a helper cell, then edit it as you go.
 
Upvote 0
Try.
VBA Code:
Sub copy2()
'
' copy2 macro
'

'
    Range("L2").Select
    Range(Selection, Selection.End(xlToRight)).Select
    Selection.copy
    Range("L2").End(xlDown).offset(1,0).Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
    End Sub
 
Upvote 0
Solution
Generally using 'Select' in code in not required and slows your code so I suggest that you try to avoid that in the future.
If I have understood your requirement correctly it might just need this

VBA Code:
Sub copy2_v2()
  With Range("L2", Range("L2").End(xlToRight))
    Cells(Rows.Count, .Column).End(xlUp).Offset(1).Resize(, .Columns.Count).Value = .Value
  End With
End Sub


and also,
can anyone help me out with a macro that change a range in a cell?
like if a9 is:
=a20:g50
This needs clarification please
A20:G50 is a range of 31 rows.
If =A20:G50 is a formula placed in cell A9 it will result in a #SPILL! error because the formula is only 11 rows above the first row of the A30:G50 range being referenced.
Also if the 20 is reduced 11 times then the formula would be referring to its own cell causing a circular reference error.

.. or have I misunderstood what you have, where it is and what you want?
 
Upvote 0
Micron
i don't know how to read too much vba, only to record one, so forgive my ignorance in the subject but i didn't understand much (like InputBox (type8) )
kvsrinivasamurthy
tested and works great, thanks!
Peter_SSs
also works great! thanks!
as for clarification:
you right, i just wrote an example without much thought,
but the original would not spill, and the formula wouldn't refers to its own cell

since kvsrinivasamurthy answer correctly i would mark his answer and open a new thread to ask

thank u all!
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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