Copy paste macro needs tweak
Solved/Closed
frank7788
Posts
2
Registration date
Tuesday March 1, 2016
Status
Member
Last seen
March 8, 2016
-
Mar 2, 2016 at 12:25 PM
frank7788 Posts 2 Registration date Tuesday March 1, 2016 Status Member Last seen March 8, 2016 - Mar 8, 2016 at 01:38 PM
frank7788 Posts 2 Registration date Tuesday March 1, 2016 Status Member Last seen March 8, 2016 - Mar 8, 2016 at 01:38 PM
Related:
- Copy paste macro needs tweak
- Key tweak - Download - Mouse and keyboard
- How to copy paste youtube link on android - Guide
- Tweak box - Download - App downloads
- Excel online macro - Guide
- Copy paste e with accent - Guide
2 responses
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Contributor
Last seen
December 27, 2022
555
Mar 8, 2016 at 11:56 AM
Mar 8, 2016 at 11:56 AM
Hi Frank,
You basically gave yourself the answer:
Best regards,
Trowa
Monday, Tuesday and Thursday are usually the days I'll respond. Bear this in mind when awaiting a reply.
You basically gave yourself the answer:
Sub CopyStuff()
Dim x As Range
Dim y As Range
Set x = Application.InputBox("Select what copy using the mouse", Type:=8)
Set y = Application.InputBox("Select where paste using the mouse", Type:=8)
x.Copy y
End Sub
Best regards,
Trowa
Monday, Tuesday and Thursday are usually the days I'll respond. Bear this in mind when awaiting a reply.
frank7788
Posts
2
Registration date
Tuesday March 1, 2016
Status
Member
Last seen
March 8, 2016
Mar 8, 2016 at 01:38 PM
Mar 8, 2016 at 01:38 PM
Thanks for the reply......It works!