Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Percent Format in Concatenated Field 1

Status
Not open for further replies.

number2

Technical User
Oct 25, 2001
284
US
How can I get formating of percentage with no decimal places in a concatenated field? Right now I get xx.00% from:

Format([rightpercentnorm],"Percent")

Thanks!
 
Try something like this:
Format([rightpercentnorm],"0%")

Hope This Help, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
 
Number2

Perhaps, you can do your own percentage calcuation....

format((rightpercentnorm*100),"00")&"%

Where [rightpercentnorm] is entered as a decimal.

Richard
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top