Oct 24, 2007 #1 miscluce MIS Oct 4, 2007 149 US does anybody know how can I format the second column "Me.cboDoughnuts.Column(2)" to currency.? I would like to diplay dollar signs in my list box. this is the code I am using: lstItems.AddItem Me.cboDoughnuts.Column(1) & " " & Me.cboDoughnuts.Column(2)
does anybody know how can I format the second column "Me.cboDoughnuts.Column(2)" to currency.? I would like to diplay dollar signs in my list box. this is the code I am using: lstItems.AddItem Me.cboDoughnuts.Column(1) & " " & Me.cboDoughnuts.Column(2)
Oct 24, 2007 1 #2 Remou Technical User Sep 30, 2002 13,030 BE How about: [tt]lstItems.AddItem Me.cboDoughnuts.Column(1) & " " & Format(Me.cboDoughnuts.Column(2),"Currency")[/tt] Upvote 0 Downvote
How about: [tt]lstItems.AddItem Me.cboDoughnuts.Column(1) & " " & Format(Me.cboDoughnuts.Column(2),"Currency")[/tt]
Oct 24, 2007 Thread starter #3 miscluce MIS Oct 4, 2007 149 US I figured that. thanks Upvote 0 Downvote