Thread: Combobox
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dick Kusleika[_3_] Dick Kusleika[_3_] is offline
external usenet poster
 
Posts: 599
Default Combobox

Robert


Problem 1)
== The collection only contains 3 names, although there
are definatly 5 records in my spreadsheet with blank times
(2 of them appear before a record with a time)
** How do i get it to display all entries with no time??


It could be that the time cells only look blank, but aren't really - like if
they have a space in them.

It could also be that the first names are the same. Since your collection
value and key value are the same, if you have duplicates, they won't be
added to the collection. Key values must be unique. If this is the case,
the resolution to problem 2 will probably resolve this problem.


Problem 2)
== The collection only shows the first name (column B)
** How do i get the collection to have the first name and
the surname (column D)??


dollAdd Cells(k,"B").Value & " " & Cells(k,"C").Value, Cells(k,"B").Value &
" " & Cells(k,"C").Value


--
Dick Kusleika
MVP - Excel
www.dicks-clicks.com
Post all replies to the newsgroup.