RockandGrohl
Well-known Member
- Joined
- Aug 1, 2018
- Messages
- 806
- Office Version
- 365
- Platform
- Windows
Hi all, got some super simple code here that's not working:
When I execute the copy command, nothing happens - there's no bounding box around the range in the est sheet. I've tested on single ranges.
Manual copies work and I get the dashed line on the copied range.
Can anyone help with this? Thank you.
VBA Code:
est.Activate
LastrowEst = est.Cells(Rows.Count, "B").End(xlUp).Row
Range("C12:C" & LastrowEst).Copy
When I execute the copy command, nothing happens - there's no bounding box around the range in the est sheet. I've tested on single ranges.
Manual copies work and I get the dashed line on the copied range.
Can anyone help with this? Thank you.