Jul 21, 2005 #1 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!
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!
Jul 21, 2005 #2 Remou Technical User Sep 30, 2002 13,030 BE Hi Something like this (?): Code: =IIf([Combo1].[ListIndex]=0,[Combo1].[Itemdata](1),[Combo1].[Itemdata](0)) Upvote 0 Downvote
Hi Something like this (?): Code: =IIf([Combo1].[ListIndex]=0,[Combo1].[Itemdata](1),[Combo1].[Itemdata](0))