View Full Version : ListBox formatting
ProteanBeing
01-15-2008, 07:47 AM
Is it possible to carry the format of the items in a multi-column list box? On of my columns is a money but displays as a regular decimal number.
Carl A
01-15-2008, 09:43 AM
If you use the Rowsource property it will retain the formatting.
Private Sub UserForm_Initialize()
ListBox1.RowSource = "a1:c1"
end sub
Carl A
01-15-2008, 09:43 AM
Ignore
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.