In my worksheet I have continuous rows with data in D7:D726. I column E I have data from E7:E24. I need to copy the data
in range E7:E24 and autofill the remaining rows in col E (i.e. E25:E726) with that range of values.
The ranges in both col D and the initial range to be copied in col E will never be the same.
So far I have tried this code:
The result I'm getting (in E25:E726) is #N/A
Any advise much appreciated.
in range E7:E24 and autofill the remaining rows in col E (i.e. E25:E726) with that range of values.
The ranges in both col D and the initial range to be copied in col E will never be the same.
So far I have tried this code:
Code:
Range("E7:E" & Range("D" & Rows.Count).End(xlUp).Row).Value = Range("E7:E" & Range("E" & Rows.Count) _
.End(xlUp).Row).Value
Any advise much appreciated.