Hi,
Is this actually in a VBA Userform or in an Excel cell?
If in a userform:
VB Code:
Label1.Caption = Format(Label1.Caption, "€ #,##0.00")
If in a cell:
VB Code:
Selection.NumberFormat = "[$€] #,##0.00"
or replace Selection with the cell or range reference.
The Currency format works from your Windows locale settings and can't be directly changed.
zaza










Reply With Quote