I have searched through the forum but not yet found the answer I need for my issue. I'm sure there is something simple I'm missing here but....
I am developing a customers and orders database for a coffee sales company. I have, of course, a tblOrders that contains the fields 'OrderDate' and 'CallBackDate'. The 'CallBackDate', in most cases, should be 14 days from the 'OrderDate' and self-populate as a default value based on the 'OrderDate'. No problem with the concept there.
I originally wrote the following expression as the control source of the 'CallBackDate':
[OrderDate]+14
Yes, works beautifully, populates field just as it should. However, if, for some reason, they want the 'CallBackDate' to be more than 14 days, you can't override and type in your own date.
So, what is the way around this?
I have also tried making the control source the 'CallBackDate' field and the default value [OrderDate]+14, but then it doesn't default, only leaves the field open for manual entry.
I don't know VB, so I can't do it that way unless someone writes the code for me :-(. I know enough to insert already written code, but that's it. I need to be able to somehow do this within Access.
Text fields will allow you to override a default value.
Help/Suggestions are greatly appreciated!
I am developing a customers and orders database for a coffee sales company. I have, of course, a tblOrders that contains the fields 'OrderDate' and 'CallBackDate'. The 'CallBackDate', in most cases, should be 14 days from the 'OrderDate' and self-populate as a default value based on the 'OrderDate'. No problem with the concept there.
I originally wrote the following expression as the control source of the 'CallBackDate':
[OrderDate]+14
Yes, works beautifully, populates field just as it should. However, if, for some reason, they want the 'CallBackDate' to be more than 14 days, you can't override and type in your own date.
So, what is the way around this?
I have also tried making the control source the 'CallBackDate' field and the default value [OrderDate]+14, but then it doesn't default, only leaves the field open for manual entry.
I don't know VB, so I can't do it that way unless someone writes the code for me :-(. I know enough to insert already written code, but that's it. I need to be able to somehow do this within Access.
Text fields will allow you to override a default value.
Help/Suggestions are greatly appreciated!