May 17, 2004 #1 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!
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!
May 17, 2004 1 #2 PHV MIS Nov 8, 2002 53,708 FR 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 Upvote 0 Downvote
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
May 17, 2004 #3 willir MIS Aug 5, 2003 2,754 US Number2 Perhaps, you can do your own percentage calcuation.... format((rightpercentnorm*100),"00")&"% Where [rightpercentnorm] is entered as a decimal. Richard Upvote 0 Downvote
Number2 Perhaps, you can do your own percentage calcuation.... format((rightpercentnorm*100),"00")&"% Where [rightpercentnorm] is entered as a decimal. Richard