Bill Bisco
Custom User Title
- Local time
- Today, 07:05
- Joined
- Mar 27, 2009
- Messages
- 92
Hi everyone,
I am trying to solve the problem in Access 2003 of users wanting to type in a Percentage. I am aware of Allen Browne's tip to Enter a Value as a percent at http://www.allenbrowne.com/casu-16.html
However, his example requires setting the Afterupdate Event to: =MakePercent([Text23]) when I already have VBA Code in my AfterUpdate Event.
Basically I'd like my Code to work like this:
Any help would be sincerely appreciated,
Bill
I am trying to solve the problem in Access 2003 of users wanting to type in a Percentage. I am aware of Allen Browne's tip to Enter a Value as a percent at http://www.allenbrowne.com/casu-16.html
However, his example requires setting the Afterupdate Event to: =MakePercent([Text23]) when I already have VBA Code in my AfterUpdate Event.
Basically I'd like my Code to work like this:
Code:
If txtProposedMix.Value Contains "%" character Then
NewValue = OldValue
Else
NewValue = OldValue / 100
End If
Bill