Making numbers display as currency in lables

  • Thread starter Thread starter David S
  • Start date Start date
D

David S

Hi everyone
I want to be able to display numbers on labels as currency. Is this
possible? Even displaying calculated results on a label with two decimal
places would be great.

Thanks and best wishes for the new year to every one

Dave
 
Label1.Caption = Format(myNum, "£#,##0.00")

change the format to suit.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Hi everyone
I want to be able to display numbers on labels as currency. Is this
possible? Even displaying calculated results on a label with two decimal
places would be great.

Thanks and best wishes for the new year to every one

Dave
Thanks Bob & Tom
I will give your suggestions a try.
 
Back
Top