Jul 21, 2005 #1 obheron Technical User Joined May 25, 2005 Messages 40 Location 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 Joined Sep 30, 2002 Messages 13,030 Location 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))