Alternatively ...
While "Euro" doesn't work with the Format *function* it does work with the
Format *property*. For example ...
Private Sub Form_Open(Cancel As Integer)
Me.EmployeeID.Format = "Euro"
End Sub
(I know, it doesn't make sense to display an Employee ID as a Euro amount,
but I needed a non-currency field for testing purposes, because on my system
Currency *is* Euro.)
--
Brendan Reynolds
Access MVP
Brendan Reynolds said:
It appears that, while the Euro format is available from the property
sheet, it has not been added to the list of named formats that are
recognized by VBA. Which means that if you need to set the format
programmatically, you'll need to use a custom format such as the one that
Brian suggests elsewhere in this thread.
--
Brendan Reynolds
Access MVP
Holly said:
Why is this not working? I am trying to convert a number to euros and
display
it as such.
format([Rate]* 1.25,"Euro")
the result comes up Euro instead of the number with the euro sign
If I use format([Rate]* 1.25,"Currency") it displays the number with a $
sign.