User Form

daddyfoxuk

Board Regular
Joined
Nov 18, 2016
Messages
68
Hi all, would anybody be willing to help me create a user form... I already have an excel sheet created with various vba codes and macros but I’m looking at trying to go that one step further. Unless anyone has any other suggestions...? Thanks.
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
I don't think you're giving much information to enable us to help you.. And Google is your best friend, there is a tonne of information out there on making a UserForm.
On your Workbook, press Alt+F11. Right click on your project explorer > insert > UserForm
 
Upvote 0
Hi all, would anybody be willing to help me create a user form... I already have an excel sheet created with various vba codes and macros but I’m looking at trying to go that one step further. Unless anyone has any other suggestions...? Thanks.

Sorry but that is too vague. You need to explain why you want a userform (I guess this is to force user to enter certain data in a specific way or/and to allow user to go throug all kind of information without any knowledge of Excel).

You would need to start drawing it (a textbox for data entry, a button to do xxx, a list to chose yyy), and by doing so you will go through all possible scenarios the user can face...and then only we can help with specific coding question (such as how can I force the user to only enter numbers in a textbox, how can I send the value of a textbox to a cell, etc.)
 
Upvote 0
Ok, so to explain a little further... I have an excel sheet which contains a list of several hundred numbers of which we need to find. We scan each part and if(iserrror(match( will return if that part is in the list, if it is a input box appears telling you it is and requires a password to continue... which afterwards a couple of command buttons create 2 separate list depending on if we need that part or not. This then fires out emails showing which part has been found, hope this makes sense. It would be nice to just see a user form and everything hidden but I have no experience with these... so any advice is much appreciated.

List
Pallet
Scan Part BelowSearch
ActionPart
Pallet
Inspected ByTime Stamp
1

Please Scan Part
Please Scan Part 27/11/2018 11:17
<colgroup><col width="225" style="width: 169pt; mso-width-source: userset; mso-width-alt: 8228;"> <col width="115" style="width: 86pt; mso-width-source: userset; mso-width-alt: 4205;"> <col width="230" style="width: 173pt; mso-width-source: userset; mso-width-alt: 8411;"> <col width="194" style="width: 146pt; mso-width-source: userset; mso-width-alt: 7094;"> <col width="421" style="width: 316pt; mso-width-source: userset; mso-width-alt: 15396;"> <col width="193" style="width: 145pt; mso-width-source: userset; mso-width-alt: 7058;"> <col width="206" style="width: 155pt; mso-width-source: userset; mso-width-alt: 7533;"> <col width="133" style="width: 100pt; mso-width-source: userset; mso-width-alt: 4864;"> <col width="93" style="width: 70pt; mso-width-source: userset; mso-width-alt: 3401;"> <tbody> </tbody>

The sheet looks like te aoe but on te left we have 100's of numbers....
 
Last edited:
Upvote 0
To me this is a good case for userform but this is a full project. The only advice we can give is to use google step by step. You will have to spend hours into it.

As a example, when you type "vba hide excel" you quickly come to this...
Code:
Private Sub UserForm_Activate()
Application.Visible = False
End Sub
but the first step is to find how to draw a userform, how to show and hide them (easy userform1.show, but how do you trigger the .hide? OK button?) and then you should find where to use Private Sub UserForm_Activate() codes.

With that, 50% is done. Then comes the searching code in itself, the one for email, etc... You don't need prior knowledge even if knowing events (for example launch a macro when workbook opens) helps as this exactly the same principle
 
Last edited:
Upvote 0
Hi, I have all the codes working within the sheet at the moment through vba... could i just use these on the user form...? As i said i have no experice with these but currently the sheet is working perfectly using vba. Thanks forth advice
 
Upvote 0
Hi, I have all the codes working within the sheet at the moment through vba... could i just use these on the user form...? As i said i have no experice with these but currently the sheet is working perfectly using vba. Thanks forth advice
Then it is easy

Code:
Private Sub CommandButton1_Click()
'Your code
End Sub

Code:
Private Sub TextBox1_Exit(ByVal Cancel As MSForms.ReturnBoolean)
'your code
End Sub

but those are not in module, they are in userform. Again, nobody can draw a userform and assign the macros for you, you will have to learn it (https://www.youtube.com/watch?v=TxQU8qj4K_Y)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,550
Members
449,088
Latest member
davidcom

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