How do I hide the demical (implied) in Access Report

G

Guest

In Microsoft Access, when exporting to a report how do I get the demical to
not show up in the report but instead be implied.
 
B

Brendan Reynolds

If you mean what I *think* you mean, multiply by 100. For example, try
running this query against the Orders table in the Northwind sample database
....

SELECT Orders.Freight, Int([Freight]*100) AS Expr1
FROM Orders
 
F

fangliang

test
Brendan Reynolds said:
If you mean what I *think* you mean, multiply by 100. For example, try
running this query against the Orders table in the Northwind sample database
...

SELECT Orders.Freight, Int([Freight]*100) AS Expr1
FROM Orders

--
Brendan Reynolds
Access MVP

necrosis said:
In Microsoft Access, when exporting to a report how do I get the demical
to
not show up in the report but instead be implied.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top