deer777
asked on
MS ACCESS VBA If Form textbox value in table and date is not null then
Need to write VBA to determine if a textbox value is in table then . . . update table
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
VBA doesn't directly access tables. You would do this by creating an update query that selects the record you want to update if the value is null and sets the value to whatever you want.
I'm guessing that you are making this harder than it needs to be. Are you not using a bound form?
I'm guessing that you are making this harder than it needs to be. Are you not using a bound form?
ASKER