Code:
Dim sht As Worksheet
Set sht = Sheets("REX")
LastRow = sht.Range("A75").Rows.Count
Range("F75").Value = "543"
Selection.AutoFill Destination:=Range("F75:F" & LastRow)
I am trying to put value starting F75 to last row of F, but It's not working.
Is there any way to fix this code to work?