Autofill Values only

rizabdullah

New Member
Joined
Mar 13, 2015
Messages
6
Hi Guys

I am stuck with a coda and was wondering if somebody could assist me please.
I am selecting a call and entering value "77000" in cell E11. I then find next blank row, depending on the column F, then I like to copy value "77000" from E11 and paste value to last row found from column F. The below is working, however its autofilling series, I just want autofill value. Any suggestions please:

ActiveCell.FormulaR1C1 = "77000"
Range("E11").Select

LR = Range("F" & Rows.Count).End(xlUp).Row
Range("E11").AutoFill Destination:=Range("E11:E" & LR), type:=xlFillValues

Many thanks in advance
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
I think this might work

Code:
LR = Range("F" & Rows.Count).End(xlUp).Row
Range("E11:E" & LR).Value = 77000
 
Upvote 0
Many thanks for that, yes it works. However, if I like to keep it more dynamic and not use E11 cell reference; how would I achieve that.

Thanks
 
Upvote 0

Forum statistics

Threads
1,214,943
Messages
6,122,370
Members
449,080
Latest member
Armadillos

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