|
-
Jun 11th, 2006, 02:46 AM
#1
Thread Starter
Hyperactive Member
-
Jun 11th, 2006, 05:55 AM
#2
Re: Currency Format..
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
-
Jun 11th, 2006, 11:05 PM
#3
Thread Starter
Hyperactive Member
-
Jun 12th, 2006, 01:37 PM
#4
Re: Currency Format..
Glad to have helped. Don't forget to mark the thread as Resolved...
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|