Format number field to show Percent

  • Thread starter Thread starter Kaylen
  • Start date Start date
The code works! Thank you Clifford!

Clifford Bass said:
Hi Kaylen,

Try this instead:

If Not IsNull(controlname) And Right(controlname, 1) <> "%" Then
controlname = controlname / 100
End If

Clifford Bass
 
With Access 2007 I believe all you have to do is set the control's Format
property to Percent.

That is what I had not realized. That certainly makes it simpler than my
suggestion!
 
Thank you for everyone' s help and suggestions. I am able to format the
number to Percent the way I would like to! Thank you all for being so helpful!
 
Back
Top