Euro Symbol (1 Viewer)

Extra_Cover

Registered User.
Local time
Today, 14:10
Joined
Oct 21, 2008
Messages
71
I cannot find this anywhere!!!

Can anyone tell me how to format a euro symbol using MS-Access 2000?

I have the current format set but would really like the euro symbol rather than 'EU'.

Curr1: IIf([curr_code] Like "EU*",Format([Local Value],"\EU0.00"),Format([Local Value],"$0.00"))
 

Kiwiman

Registered User
Local time
Today, 14:10
Joined
Apr 27, 2008
Messages
799
Howzit

Try the format called EURO.

That would be on the Format tab of the control property - Format = EURO. THis will show the values with the EUR) symbol
 
Last edited:

Extra_Cover

Registered User.
Local time
Today, 14:10
Joined
Oct 21, 2008
Messages
71
Thanks for reply Kiwiman.

I cannot format the control to euro as it also may be dollars or sterling. I can detect what currency the value is but then need to apply the correct format.
 

Simon_MT

Registered User.
Local time
Today, 14:10
Joined
Feb 26, 2007
Messages
2,176
Try putting the currency symbol into a table and output the symbol then the amount.

Simon
 

Kiwiman

Registered User
Local time
Today, 14:10
Joined
Apr 27, 2008
Messages
799
Howzit

No thinking try.

Code:
Expr1: IIf([cur]="EUR",Format([Invoice],"€#,###.00"),IIf([cur]="USD",Format([invoice],"$#,###.00"),Format([invoice],"currency")))

But I would go with Simons suggestion to put the symbol in a table etc.

Qucik key to insert the EURO symbol - CTRL + ALT + 4
 

Extra_Cover

Registered User.
Local time
Today, 14:10
Joined
Oct 21, 2008
Messages
71
Thanks for response. It was the euro symbol I was struggling to display. CTRL + ALT + 4 worked fine. As per Simons suggestion good idea to put symbols in a table.


Problem solved. Cheers.
 

Simon_MT

Registered User.
Local time
Today, 14:10
Joined
Feb 26, 2007
Messages
2,176
Kiwiman,

What part of NZ are you from? I'm a Wellingtonian.

Simon
 

Kiwiman

Registered User
Local time
Today, 14:10
Joined
Apr 27, 2008
Messages
799
Howzit

I'm a hurricanes fan too but from Hawkes Bay \ Poverty Bay area. Went to uni at Vic though - great city Wellington.
 

Users who are viewing this thread

Top Bottom