The code is really simple and I'm just trying to copy values in from_range and paste them in to_range. But it's just not working out...
Sub test14()
Range("to_range") = Range("from_range")
End Sub
Before,
After, not sure why everything in to_range is gone
Desired, just want to overwrite to_range with from_range
Could someone explain what's going on here? Thanks.
also you can do this job with Select:
Range("from_range").Select
Selection.Copy
Range("to_range").Select
ActiveSheet.Paste
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With