Not Pasting to LastRow

Guzzlr

Well-known Member
Joined
Apr 20, 2009
Messages
977
Office Version
  1. 2021
Platform
  1. Windows
Hello
I have:
VBA Code:
Dim LastRow As Range
Range("F6").Select
ActiveCell.FormulaR1C1 = "=TEXT(RC[-1],""mmmm, yyyy"")"
Range("F6").Select
Selection.Copy
Range("F7" & LastRow).Select
Selection.PasteSpecial

My LastRow is working correctly. I am trying to copy the formula in F6 (which is working correctly) and pasting in F7 down to Last Row.
However, it is only pasting in the formula in F7 only and not all the way down to Last Row

What am I missing?

Thank you
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Unfortunately you don't show us how LastRow is calculated, but I guess it is a "Long", not a Range, and it contains the number of the last used row, and thus the last line that should receive the new formula.
If this assumption is correct then all your code can be written as
VBA Code:
Range("F7:F" & LastRow).FormulaR1C1 = "=TEXT(RC[-1],""mmmm, yyyy"")"

If LastRow is not a Long but a range then tell us how you set it and we'll adjust the code
 
Upvote 0
I think this:
VBA Code:
Range("F7" & LastRow).Select

should be this:
VBA Code:
Range("F7:" & LastRow).Select

missing a colon maybe?

although this could be alittle more succinct:
replace:
VBA Code:
ActiveCell.FormulaR1C1 = "=TEXT(RC[-1],""mmmm, yyyy"")"
with
VBA Code:
Range("F6:" & Lastcell).FormulaR1C1 = "=TEXT(RC[-1],""mmmm, yyyy"")"
and the rest is not needed.

but to reiterate what the prior post said. If you don't give all the components of the calculation you have then we can't be certain we are really finding out what is wrong.
 
Upvote 0
Here is a sub that i think does what you want, not sure if your last cell calculation is similar, but use what part of this you like if you find it helpful.

Sub mmmmyyyyy()
Dim LastCellInColumn As Variant
LastRowLeftColumn = Range("F6").Offset(0, -1).End(xlDown).End(xlDown).End(xlUp).Row
Range("F6:F" & LastRowLeftColumn).FormulaR1C1 = "=TEXT(RC[-1],""mmmm, yyyy"")"
End Sub
 
Upvote 0
I would not have picked up that you had declared LastRow as a range if @awoohaw hadn't mentioned it.
Unfortunately the code he provided won't work.
If LastRow is indeed a range then the code would look something like this:
VBA Code:
Range("F6:F" & LastRow.Row).FormulaR1C1 = "=TEXT(RC[-1],""mmmm, yyyy"")"
(I would also have preferred to use LastCell in that case)

If LastRow is either an integer or long then you should go with @Anthony47's post #2.
As both the others have pointed out you are not showing where and how LastRow is getting a value or range.
 
Upvote 0
I would not have picked up that you had declared LastRow as a range if @awoohaw hadn't mentioned it.
Unfortunately the code he provided won't work.
If LastRow is indeed a range then the code would look something like this:
VBA Code:
Range("F6:F" & LastRow.Row).FormulaR1C1 = "=TEXT(RC[-1],""mmmm, yyyy"")"
(I would also have preferred to use LastCell in that case)

If LastRow is either an integer or long then you should go with @Anthony47's post #2.
As both the others have pointed out you are not showing where and how LastRow is getting a value or range.
That is strange, in Post#4 I even used "Option Explicit", and I see now the variable is not declared. (I must have changed the name when writing it).
What I posted in post #3 were guesses assuming that "lastrow" was an address or row number and not really a range.
(As I said, no one really knows what the intention of "lastrow" is because there is no information on its calculation.)

Suggested code in Post #4 should be:
VBA Code:
Sub mmmmyyyy()
Dim LastRowLeftColumn As Variant
LastRowLeftColumn = Range("F6").Offset(0, -1).End(xlDown).End(xlDown).End(xlUp).Row
Range("F6:F" & LastRowLeftColumn).FormulaR1C1 = "=TEXT(RC[-1],""mmmm, yyyy"")"
End Sub
 
Upvote 0
Hello, and thanks for all the help.
I noticed yesterday that I have my LastRow as a Range, instead of Long...which is why I probably am having problems. I am away from my computer now, but when I get back, I intend to change LastRow to Long, instead of Range...
Sorry
 
Upvote 0
Hello, and thanks for all the help.
I noticed yesterday that I have my LastRow as a Range, instead of Long...which is why I probably am having problems. I am away from my computer now, but when I get back, I intend to change LastRow to Long, instead of Range...
Sorry
I think you still need a colon and a column letter in that statement. please look at some of the other solutions as well. Best wishes.
 
Upvote 0
I think you still need a colon and a column letter in that statement. please look at some of the other solutions as well. Best wishes.
Hello, I placed a colon as suggested, and I got the below error:
1715604527579.png



Below is my code for Last Row:
Rich (BB code):
Dim LastRow As Range
Set LastRow = ActiveSheet.Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious)
MsgBox "The Last Cell with Data Is In Row:  " & LastRow.Row

When I tried to change Dim LastRow as Range to Long, I got an Object error.

Thanks for the help
 
Upvote 0
Your find statement is returning a cell and you are trying to put it into a variable that will only accept a number (long).
It doesn't matter which way you do it but you need to be consistent.

Rich (BB code):
Sub UsingRangeObject()

    Dim LastCell As Range
    Set LastCell = ActiveSheet.Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious)

    Range("F7:F" & LastCell.Row).FormulaR1C1 = "=TEXT(RC[-1],""mmmm, yyyy"")"
 
    MsgBox "The Last Cell with Data Is In Row:  " & LastCell.Row

End Sub

Sub UsingRowAsLong()

    Dim LastRow As Long
    'Note: Line does not start with Set
    LastRow = ActiveSheet.Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row

    Range("F7:F" & LastRow).FormulaR1C1 = "=TEXT(RC[-1],""mmmm, yyyy"")"
 
    MsgBox "The Last Cell with Data Is In Row:  " & LastRow
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,216,750
Messages
6,132,506
Members
449,730
Latest member
SeanHT

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