Count Records in Listbox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have an option group with 4 options and the listbox will then display the
records based on the selection. I have added a textbox to display the number
of records listed in the listbox everytime a selection is done. How do I do
that? Thanks.
ck
 
I have an option group with 4 options and the listbox will then display the
records based on the selection. I have added a textbox to display the number
of records listed in the listbox everytime a selection is done. How do I do
that? Thanks.
ck

As Control Source in an unbound control:
=ListBoxName.ListCount
 
CK said:
I have an option group with 4 options and the listbox will then display the
records based on the selection. I have added a textbox to display the number
of records listed in the listbox everytime a selection is done. How do I do
that? Thanks.
ck

Try:
=ListBoxName.listcount

Ed
 
Back
Top