Apr 28, 2004 #1 ronmon IS-IT--Management Feb 25, 2002 66 IE is there anyway way to point towards a different column in a combo box instead of the bound column using VBA
is there anyway way to point towards a different column in a combo box instead of the bound column using VBA
Apr 28, 2004 #2 hneal98 Programmer Aug 13, 2002 1,637 US you can do something like this: Dim colValue As String colValue = Me.Combo1.Column(1, 1) where the first 1 in the parameter is the column number and the other 1 is the row number. Upvote 0 Downvote
you can do something like this: Dim colValue As String colValue = Me.Combo1.Column(1, 1) where the first 1 in the parameter is the column number and the other 1 is the row number.