You should enter .04 for 4 percent since all whole numbers greater than 1
are greater than 100%.
An alternative is use the after update event of the text box to check the
value to see if a higher number is entered and divide the number by 100.
Private Sub txtMyPct_AfterUpdate()
If Me.txtMyPct > 1 Then
Me.txtMyPct = Me.txtMyPct / 100
End If
End Sub

Signature
Duane Hookom
MS Access MVP
--
> When I enter percentages it shows like this
> I enter 4
[quoted text clipped - 3 lines]
> I know this seems simplistic but I an having a difficult time with this!
> Thanks