I will like to use an two inputboxes to copy a range from one worksheet and paste to a specificied range on another worksheet.
I have a beginning of the code but I don't know how to be able to make it modeless to be copy to point and code to the specified ranges. At present, I have to manually type in the ranges. How can I modify this so it behaves like the Data Validation range box?
Does this have something to do with the Ref Edit Box?
Rng = InputBox("Range to Copy")
ActiveSheet.Range(Rng).Copy
Dest = InputBox("Paste Range")
Sheets("CMA Verification").Range(Dest).PasteSpecial xlPasteAll
Thanks