I have a Workbook which records requests received, which is periodically updated with progress - NB it is not used in lieu of Project Management/Project Tracking tools; it is there to provide the Executive Team in the charity I’m volunteering at (in retirement!) an oversight …
It works using two UserForms …
frmNewRequest … used to add new requests - there are a number of Command Button/Text Box combinations where the Command Button calls a Date Picker and writes the date selected to the Text Box - behind this I have written a simple VBA date validation routine that is triggered by a Text Box Change to ensure that the date selected is not before today
frmUpdateRequest … is essentially the same form except that it loads the data into the form from the underlying Worksheet record - I still need the aforementioned Command Button/Text Box combinations including the validation, but the problem occurs when a date previously entered has now past - when the form loads the data (into the Text Box), the validation kicks in, which I don’t want to happen to allow reporting on dates “missed”
Can anyone help eg is there a way I can distinguish between a Text Box Change as a result of the Command Button/Date Picker, from a Text Box Change as a result of loading an existing record?
Thanks for any help you can give me …
It works using two UserForms …
frmNewRequest … used to add new requests - there are a number of Command Button/Text Box combinations where the Command Button calls a Date Picker and writes the date selected to the Text Box - behind this I have written a simple VBA date validation routine that is triggered by a Text Box Change to ensure that the date selected is not before today
frmUpdateRequest … is essentially the same form except that it loads the data into the form from the underlying Worksheet record - I still need the aforementioned Command Button/Text Box combinations including the validation, but the problem occurs when a date previously entered has now past - when the form loads the data (into the Text Box), the validation kicks in, which I don’t want to happen to allow reporting on dates “missed”
Can anyone help eg is there a way I can distinguish between a Text Box Change as a result of the Command Button/Date Picker, from a Text Box Change as a result of loading an existing record?
Thanks for any help you can give me …