joeserrone
The cat of the cul-de-sac
- Local time
- Today, 15:02
- Joined
- Dec 17, 2006
- Messages
- 164
Hello Everyone,
I have a table called EARNS_Data_tbl in this table I have 2 fields called RCheckAmt and RecLock
I need for to create a button on a form that when is pressed it will search for dollar amounts in RCheckAmt of $ 2,000.00 or less and place the RecLock checkbox to True.
I also want to show the user in a message box how many records have been updated by running this.
Something similar to this:
If RCheckAmt <= 2000 Then
RecLock = True
End If
End Sub
I have a table called EARNS_Data_tbl in this table I have 2 fields called RCheckAmt and RecLock
I need for to create a button on a form that when is pressed it will search for dollar amounts in RCheckAmt of $ 2,000.00 or less and place the RecLock checkbox to True.
I also want to show the user in a message box how many records have been updated by running this.
Something similar to this:
If RCheckAmt <= 2000 Then
RecLock = True
End If
End Sub