I'm very green when it comes to coding but have some basic knowledge (at least of the concepts). However, I'm unfamiliar with using VBA and the task I need seems to be a bit complex. I'm not even sure if it is entirely possible to accomplish.
Basically I have two worksheets, one with open "cases" and one with "closed" cases. Closed cases are marked with a value of "x" in a specific column (D). What I am looking to do is have a macro that will run through the closed worksheet and find rows with a "x" in column D. I would then like to select rows from the open worksheet based on the value in column A, which is a name and will match exactly. Then I want to delete those rows from the open sheet.
So the concept is I want a way to mark cases that are down and then clear the corresponding entry from the master list of open cases. Cases are split onto different worksheets but at the end I have a macro that lists them all on a master closed sheet. So find closed cases with a "x", match the name to the name on another sheet and delete that row.
Is this feasible, and if so, how can I go about it?
Thank you in advance for any help!
EDIT:
I've realized since I'm creating a master "closed" sheet already, I don't even need to search for the "x" value. All I need to do is match names from the closed sheet to the open sheet and delete them (them as in, the row they are contained in) from the open sheet.
Going to continue to look for answers as this should be simpler.