accessfever
Registered User.
- Local time
- Today, 13:54
- Joined
- Feb 7, 2010
- Messages
- 101
I have a database and want to create a query to join a number column with a currency column. The first column is a number with double format (e.g. 3.3455 or 5.6). The second column is a currency column (e.g. CHF or EUR). If I just use a simple command such as NUMCUR = NUM1 & CUR2, then I will have 3.3455CHF or 5.6EUR in the new column. However, is it a way to change the number so it is always be rounded in 2 decimals and shows two decimals in the new column (e.g. show 3.35CHF instead of 3.3455CHF or show 5.60EUR instead of 5.6EUR)? I tried to use the round command in the query but it's not working. Any idea?