Forms...Reports

Anthony G.

Active Member
Joined
Mar 24, 2002
Messages
465
Hello to All:

A user needs to enter a name, address, DOB, SS# etc...I would presume that a form would best be suited for this., If so, then once the user clears the form and begins to enter the second set of information, could that data be sent to another worksheet, at which time the user would have the ability to view all of the data that was entered and perhaps sort that info?

If someone could just point me in the right direction, I would enjoy developing something like this.

Thanks,

Anthony
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Anthony

Everything you want to do and everything you have not thought of yet is possible... :eek:

you can have controls on the userform read data from excel and you can have information the user changes on the userform written from the userform to excel...

For example...loading data to the userform for display in a text box
txtName.text = Sheets("MySheet").Range("MyRange").value

or reverse that to dump info from the userform to excel
Sheets("MySheet").Range("MyRange").value = txtName.text

There are of course many alternatives depending on excactly what your goal is... between the people on this site and www.j-walk.com and www.cpearson.com you will find everything you need to know.

Hope this gives you some ideas... (y)
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,730
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top