View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Alignment and format in listbox columns

the listbox control provided in both the forms toolbar and control toolbox
toolbar do not offer control of column alignment or numberformatting. When
you load the array, you need to load it with a formatted string. You would
need to simulate alignment with embedded spaces.

--
Regards,
Tom Ogilvy

"Claus" wrote in message
...
Hi

I need to control the alignment and format of colums in a listbox that i
fill using array.

I need columns 1, 4,5,6 and 7 to be right aligned
I need columns 1, 4, 5 and 6 to be formatted like this #.###,##
i've done like this with column 1 in the code: MyArray(Rk, 0) =
Format(Selection.Value, "##,#0.00")

I need column 7 formatted as percentage.

See the attached picture.

Hoping for help.

Claus Persson