Copy paste macro needs tweak
Solved/Closed
frank7788
Posts
3
Registration date
Tuesday March 1, 2016
Status
Member
Last seen
March 8, 2016
-
Mar 2, 2016 at 12:25 PM
frank7788 Posts 3 Registration date Tuesday March 1, 2016 Status Member Last seen March 8, 2016 - Mar 8, 2016 at 01:38 PM
frank7788 Posts 3 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
- Tweak box - Download - App downloads
- Compare two worksheets and paste differences to another sheet - excel vba free download ✓ - Excel Forum
- Macro copy and paste in next blank cell - Guide
- E with accent copy paste - Guide
- This message was deleted text copy and paste - Android Forum
2 replies
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
January 16, 2023
544
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
3
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!