View Full Version : Display text as numeric percent


razorking
05-27-2009, 03:02 PM
I have a table that has values that are data type test, My values in text look like this:
2.62
5.00
60.00

Is there a way in a query to format this text as a numeric percent of:
2.62%
5.00%
60.00%

SOS
05-27-2009, 03:09 PM
I have a table that has values that are data type test, My values in text look like this:
2.62
5.00
60.00

Is there a way in a query to format this text as a numeric percent of:
2.62%
5.00%
60.00%

You can use

Format(Val([YourFieldName])/100,"percent")

razorking
05-27-2009, 03:23 PM
SOS,

Good God! that works. And correctly as well. Easy enough.

Thanks!