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
Hello everybody,

Please could anyone spare his/her scares time to help me, I'm new in this forum and I hope to be an expert in excel. Your contributions would be highly appreciated, thank you.

I have a userform named MembersInformationEntry; it as the following details:

Label1 named 'member Name' with a corresponding textbox4 (MembersData B2)

Label2 named 'Monthly Savings' with a corresponding textbox1 (MembersData E2)

Label3 named 'Application fee' with a corresponding textbox2 (MembersData G2)

Label4 named 'Date Joined' with a corresponding textbox3 (MembersData C2)

Option Botton1 for 'Cleared' and Option Botton2 for 'Not Cleared' (MembersData H2)

Command Botton1 for 'OK'(this is to transfer new member info to a sheet named "membersdata" in the next available emty row as indicated above) and Command Botton2

3 responses

TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 552
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
0
redbaby Posts 11 Registration date Monday March 21, 2016 Status Member Last seen March 24, 2016 1
Mar 23, 2016 at 03:03 AM
Thanks a lot, I enjoy having you in this forum.
0