i want a text box to show "change" if the value of total is less than zero and "balance" if the value is greater than zero. i tried this code on the afterupdate event but it won't work. please help...
Code:
If Me.txttotal < 0 Then Me.txtchange = "change" ElseIf Me.txttotal > 0 Then Me.txtchange = "balance" Else ' do nothing End
Leave a comment: