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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Setting a text box value.

Status
Not open for further replies.

obheron

Technical User
May 25, 2005
40
US
How would I set a text box value to the item not selected in a 2 choice combo box.

I.e. if index 0 is selected, the text box should have the value at index 1 of the combo box.

thanks again!
 
Hi
Something like this (?):
Code:
=IIf([Combo1].[ListIndex]=0,[Combo1].[Itemdata](1),[Combo1].[Itemdata](0))
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top