The currency type is set in the regional settings ($,£ ,¥, etc). However,
access really does not understand 'currency' it just stores it as a floating
point number (xx.yy....). So if you need for people in different locales to
share currency data you will have to either decide on a 'coin of the realm"
everyone uses or build a data structure that stores at least a number
(15.00) and a currency type (dollar, pound, euro, yen) in the database then
a currency conversion routine to present it to the local user.
Ed Warren