Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want to create a user form to to create a variable value to one of four
values using a dropdown list with the name Account_Number: "CC Account #" The form name is Select_CC_Bank() I don't want to pre-define these variavles as cells on the worksheet. I want the Form to select a 4 digit integer numerical value, different for each item, only one value will be chosen. I have predefined the values: Private Sub UserForm_Initialize() ' Add pre-defined choices ' Do I define Name.AT&T-Visa = "1234" "don't know if this is the correct ' format and the others before or after the form, or does it not matter? Name.USAir-VISA = "3214" ' assuming this is the correct format Name.AT&T-Visa = "1234" ' are the quotes needed for number value? Name.Capitol1-VISA = "4123" Name.CASH = "1324" cb_CCBank.AddItem "USAir-VISA" cb_CCBank.AddItem "AT&T-MC" cb_CCBank.AddItem "Capitol1-VISA" cb_CCBank.AddItem "CASH" cb_CCBank.AddItem " " End Sub I want the Form to select the 4 digit integer numerical value, different for and based on each item, only one value will be chosen by the form, then OK. How do I know what was returned by the form? Private Sub UserForm_SetVariable() AcctNo = Returned_variable 'I think this puts the numerical 1234 in ' the variable AcctNo EndSub The rest of the usage of the value of the variable in the macro is pretty simple and I think Ican handle it. After OK, the rest of the macro will set the variable name, change the tab name and select a region and insert that numerical value in every cell in the region. I'm working from Bill Jelen's book and Chapter 9 is not too clear in the forms area, although the first 8 chapters are very useful Gene |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Make dropdown item list in invoice sheet | New Users to Excel | |||
How do I fill a cell in a user form from a selection on same form? | Excel Discussion (Misc queries) | |||
Select an item from dropdown list but return value from adjacent c | Excel Discussion (Misc queries) | |||
How can I allow a user to select more than 1 drop down item? | Excel Worksheet Functions | |||
How can I set up to chose more than 1 item from a dropdown list (. | Excel Discussion (Misc queries) |