eveCalypso
Programmer
I have a stock transaction table.
I want a form which:
inserts new records to the transaction table
only display and allow edits on records added today.
So, in theory, I only want to display transaction records equal or greater to today, but still let Access handle the insert/update/navigation and deletion of records.
Now, my transactionDate value is part of my PK. It is a datetime value (I insert both).
How do I or should I select data from my Transactions Table in order to achieve this?
transactionDate = getdate() obviously doesn't work because all the times are different.
Also, should it be in my recordsource or only as a filter within the form?
Thank you!
EvE
I want a form which:
inserts new records to the transaction table
only display and allow edits on records added today.
So, in theory, I only want to display transaction records equal or greater to today, but still let Access handle the insert/update/navigation and deletion of records.
Now, my transactionDate value is part of my PK. It is a datetime value (I insert both).
How do I or should I select data from my Transactions Table in order to achieve this?
transactionDate = getdate() obviously doesn't work because all the times are different.
Also, should it be in my recordsource or only as a filter within the form?
Thank you!
EvE