[RESOLVED] Headers in multicolumn listbox
For a multicolumn listbox located in a sheet, how can I specify the name to appear in the column's head?
If it was located in a userform, one could use the .RowSource property, but this property doesn't exist when located in a sheet...
Extra question. Is it possible to change the colour of a single column?
Re: Headers in multicolumn listbox
Quote:
how can I specify the name to appear in the column's head?
Right click on the listbox and change the
.ColumnHeads = True
.ListFillRange = Sheet1!A1:C4 'say this is the range
Quote:
Extra question. Is it possible to change the colour of a single column?
Hmmm... not sure about this...
Hope this helps...
Re: Headers in multicolumn listbox
Quote:
Originally Posted by Fonty
Extra question. Is it possible to change the colour of a single column?
Do you mean like right-clicking the column letter, selecting format cells and going to the patterns tab?
Re: Headers in multicolumn listbox
I mean that the specific column appears in a different colour than plain white.
Re: Headers in multicolumn listbox
Oh, duh. This is about listboxes. No, I'm not sure that you can.