Userform to export data to another sheet
Solved/Closed
redbaby
Posts
11
Registration date
Monday March 21, 2016
Status
Member
Last seen
March 24, 2016
-
Mar 22, 2016 at 03:25 AM
redbaby Posts 11 Registration date Monday March 21, 2016 Status Member Last seen March 24, 2016 - Mar 24, 2016 at 08:53 AM
redbaby Posts 11 Registration date Monday March 21, 2016 Status Member Last seen March 24, 2016 - Mar 24, 2016 at 08:53 AM
Related:
- How to transfer data from userform to excel sheet
- Free fire transfer - Guide
- Transfer data from one excel worksheet to another automatically - Guide
- How to open excel sheet in notepad++ - Guide
- Google sheet right to left - Guide
- How to reset safe folder password without losing data ✓ - Android Forum
3 responses
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
555
Mar 22, 2016 at 12:58 PM
Mar 22, 2016 at 12:58 PM
Hi Redbaby,
Since you are eager to learn, check out this link:
https://www.excel-easy.com/vba/userform.html
The thing you might miss is to put data in the first available row:
Range("A"&rows.count).end(xlup).offset(1,0)
Good luck, have fun and best regards,
Trowa
Since you are eager to learn, check out this link:
https://www.excel-easy.com/vba/userform.html
The thing you might miss is to put data in the first available row:
Range("A"&rows.count).end(xlup).offset(1,0)
Good luck, have fun and best regards,
Trowa
Mar 23, 2016 at 03:03 AM