Locopete99
Registered User.
- Local time
- Yesterday, 22:57
- Joined
- Jul 11, 2016
- Messages
- 163
Hi Guys,
Can someone explain the workings of .FindFirst?
I'll admit I've been using the .FindFirst that someone helped me with so I dont actually get the workings.
So i now have a new record set that I want to update, but I need to match the record before going forward.
I have used
Which is just amending the code that I was helped with before.
I have a form where the user enters a piece of data and it enters 3 other fields using calculations.
So the Table that the record set is using has the unique field Subba3 and the form has Subba3.
So how to I get this to select the record in the table that has the same Subba3 record as the record that I am updating on the form?
Currently it is inserting a new row with the inserted data.
Can someone explain the workings of .FindFirst?
I'll admit I've been using the .FindFirst that someone helped me with so I dont actually get the workings.
So i now have a new record set that I want to update, but I need to match the record before going forward.
I have used
Code:
.FindFirst "[Subba3] =" & "'" & [Subba3] & "'"
Which is just amending the code that I was helped with before.
I have a form where the user enters a piece of data and it enters 3 other fields using calculations.
So the Table that the record set is using has the unique field Subba3 and the form has Subba3.
So how to I get this to select the record in the table that has the same Subba3 record as the record that I am updating on the form?
Currently it is inserting a new row with the inserted data.