I have a form for processing tracking of project assets.
frmProcessingTracking. It is tied to tblProcessingtracking.
For some work I do to export records to a folder, I need to have a textbox in the header for the path. I don't want to have to set this every time.
the textbox is called CustomPath. I have it set to
It pulls the record for that table, but I have an issue. If the custom path hasn't been set for that project, then there is no record.
In that case, I need to allow a person to enter in the path, and have the tblMetadataPaths append/add a new record with the assetproject id and the entered custom path in this textbox.
Can anyone please help me with how to accomplish this?
Thanks!
misscrf
It is never too late to become what you could have been ~ George Eliot
frmProcessingTracking. It is tied to tblProcessingtracking.
For some work I do to export records to a folder, I need to have a textbox in the header for the path. I don't want to have to set this every time.
the textbox is called CustomPath. I have it set to
Code:
=DLookUp("[tblMetadataPaths]![CustomPath]","tblMetadataPaths","[Assetprojectid] = " & [Assetprojectid])
It pulls the record for that table, but I have an issue. If the custom path hasn't been set for that project, then there is no record.
In that case, I need to allow a person to enter in the path, and have the tblMetadataPaths append/add a new record with the assetproject id and the entered custom path in this textbox.
Can anyone please help me with how to accomplish this?
Thanks!
misscrf
It is never too late to become what you could have been ~ George Eliot