Hello, I am working on a project where I have a user form that will send data entries to a worksheet called “Daily Records”. In the user form, there is an option button called “Pending”. When this button is selected, it will also send the data entry to another worksheet (in the same workbook) called “Pending Records”. In the “Pending Records” worksheet, there are 5 columns (date, code, serial no, repair date, status). The date, code, serial no, and status will be filled up by the user form when the “pending” option button is selected.
What I want is to have the “Status” column in the “Pending” worksheet to change from “pending” to “repaired” when the user types in the repair date of the items. In my “daily records” worksheet, I also have a column named “item status”. AT THE SAME TIME, I also want that column to also be updated from “pending” → “repaired” when the user types in the repair date in the “pending records” worksheet. I don’t know where to start because I know that the data entry rows in the “daily records” will not match up with the rows in the “Pending” worksheet since not all items are pending. Since both worksheets contain the items date and code, is there a way to use VBA to find a specific data entry by matching the date and code in both worksheets and update the "Status" column?
What I want is to have the “Status” column in the “Pending” worksheet to change from “pending” to “repaired” when the user types in the repair date of the items. In my “daily records” worksheet, I also have a column named “item status”. AT THE SAME TIME, I also want that column to also be updated from “pending” → “repaired” when the user types in the repair date in the “pending records” worksheet. I don’t know where to start because I know that the data entry rows in the “daily records” will not match up with the rows in the “Pending” worksheet since not all items are pending. Since both worksheets contain the items date and code, is there a way to use VBA to find a specific data entry by matching the date and code in both worksheets and update the "Status" column?