I'm going over some old code that someone else wrote
DoCmd.RunSQL "UPDATE tblAssetRecon_Exceptions SET LegalEntity = 0 WHERE LegalEntity Is Null;", -1
What does the -1 do?
I have a text file that I want to get the data that is between two symbols. (":" and ",")
example of Text field
"Pet: Dog, Rover Black lab"
"Pet: Fish, Moby Goldfish"
"Pet: Bird, Tweety Canary"
I just want to grab between ":" and "," to return
" Dog"
" Fish"
" Bird"
How do I do this?
I'm trying to check a table to see if it has any records that have been added today. In the table I have a [date created] field which is being createded with a default of now() and the format is set to short date.
I'm trying to use DCOUNT to count the records that have a today date. I will...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.