Hi Chris,
I also am a bit puzzled as to what you are trying to ascertain, but if you are trying to figure out where you are in a list box (as in the "row" number of the selected item), then use the following. Keep in mind that it is 0 based.
intPos = Me.YourListBox.ListIndex
Me.YourListBox.ListCount will give you the number of items in the list box.
Cheers,
Bill