Hello,
I have a database that tracks leak issues for my company. Everytime that an issue is not resolves, a work order is created.
At first I was using the Autonumber field as a PK and to generate the workorder numbers. If the leak issue wasn't fixed right away, I would just copy the leakID and put it as the workorderID. After stumbling upon information about AutoNumbering, while researching another topic, I found out that autonumbering is not the way to go, if you want the numbering to mean something, and there is no order is something gets deleted.
There is a found date, repaired date, and RWO#(requested work order) for each leak. I need for everytime that the repaired date field is not filled in (meaning the leak issue wasn't resolved), for a RWO# to be created automatically or maybe I was thinking have a button, that when clicked would create a RWO#. I need to have it incrementing, not by how many leaks are entered, but by how many leaks are not repaired. Also, how would I save this RWO# that is created back to the table?
At first I tried the DMax Function, but that created a RWO for each leak, no matter if it was repaired or not. I can't think of another solution.
I thank you in advance for you help, as I'm new to all this VB stuff.
I have a database that tracks leak issues for my company. Everytime that an issue is not resolves, a work order is created.
At first I was using the Autonumber field as a PK and to generate the workorder numbers. If the leak issue wasn't fixed right away, I would just copy the leakID and put it as the workorderID. After stumbling upon information about AutoNumbering, while researching another topic, I found out that autonumbering is not the way to go, if you want the numbering to mean something, and there is no order is something gets deleted.
There is a found date, repaired date, and RWO#(requested work order) for each leak. I need for everytime that the repaired date field is not filled in (meaning the leak issue wasn't resolved), for a RWO# to be created automatically or maybe I was thinking have a button, that when clicked would create a RWO#. I need to have it incrementing, not by how many leaks are entered, but by how many leaks are not repaired. Also, how would I save this RWO# that is created back to the table?
At first I tried the DMax Function, but that created a RWO for each leak, no matter if it was repaired or not. I can't think of another solution.
I thank you in advance for you help, as I'm new to all this VB stuff.