Add Percentage sign to a text field without changing value (1 Viewer)

l.kyriazakos

Registered User.
Local time
Today, 07:56
Joined
Oct 7, 2013
Messages
13
Dear Experts,

I am trying to add a percentage sign (%) after a number I get from a table, thus the number 1,5 should display 1,5% and NOT 150%.

I am using the Format Property of the text field.
I tried #,##% which converted the value to a percentage (1,5 became 150%)
Then I tried #,##"%" and #,##\% Access ignored both and changed the value in the property field to #,##%

Using the Format function is not an option because it is a bound field which should be editable.

Any Help is appreciated.

Regards
 
If it is to be editable, just put a caption after it that holds the percent sign.
 
Try this:

="Less " & CCur([Discount Percent])*100 & "% Discount"

Simon
 
I solved it as Plog recommended.
I added a caption after the field containing a % sign
 

Users who are viewing this thread

Back
Top Bottom