D
DS
I have an unbound textbox called "TxtDisplay".
I'm using Command buttons with the code
Command1
Me.TxtDisplay = Me.TxtDisplay & 1
Command2
Me.TxtDisplay = Me.TxtDisplay & 2
Etc....
I need the TxtDisplay to show this format....
1%
20%
15%
I'll be using the actual number entered to figure out a percent on a
different field. So if I enter lets say 5 it should display as 5% and
Calculate the answer as such. The other field is a currency field, So if
that field is $20.00 then I would need to end up with an answer of $1.00
Any help is greatly appreciated.
Thanks
DS
I'm using Command buttons with the code
Command1
Me.TxtDisplay = Me.TxtDisplay & 1
Command2
Me.TxtDisplay = Me.TxtDisplay & 2
Etc....
I need the TxtDisplay to show this format....
1%
20%
15%
I'll be using the actual number entered to figure out a percent on a
different field. So if I enter lets say 5 it should display as 5% and
Calculate the answer as such. The other field is a currency field, So if
that field is $20.00 then I would need to end up with an answer of $1.00
Any help is greatly appreciated.
Thanks
DS