Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need help on this 1

Status
Not open for further replies.

JrClown

Technical User
Oct 18, 2000
393
US
Hello all...
I have a workbook containing a few in-house forms. One of the forms (form 1) contains a drop-down box with options:
1,2,3,4,5,6,7,8
The scenario is that whatever the users inputs in form 1 carries into 2 other forms. I have been asked to create a brand new form to add to this workbook, but to only populate this new form with data if from the form 1 drop-down box options 3,4,7 & 8 are selected.

Hope this is clear... Thanks "The reward of one duty done is the power to fulfill another"
<%
Jr Clown
%>
 
I'm not sure I understood your problem...

For what I understood something like this should work...

if form1.dropdownbox.Text=3 OR form1.dropdownbox.Text=4 OR form1.dropdownbox.Text=7 OR form1.dropdownbox.Text=8 then
form2.show
'populate what you want on form2

else
'do anything else...
End if

Let me know if this was what you were after
 
Precisely my friend. &quot;The reward of one duty done is the power to fulfill another&quot;
<%
Jr Clown
%>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top