I'm new to MrExcel.com, first post.
I'm a VBA newbie. I'm tasked with creating a report of Client's with certain project statuses. I want to create this report on a separate sheet that already has some other data. The Advanced Filter almost does what I want, but it has two issues. I don't like that it hides the rows to create the filtered list. And it doesn't seem to update the filtered list when a Client status changes. Hoping that someone can help with some VBA to do this.
Trying to draw it out.. Want to only get project statuses that are >=1 and <=5B. And want the report to update automatically when a project status changes. I'd like to keep all the data out of the VBA as well, so someone can edit without getting into VBA.
Client Misc data Misc data2 Project Statusclient1 blah blah 0A-Project Not Opened; Not Expected
client2 blah blah 0B-Project Not Opened; Expected
client3 blah blah 1-Project Opened, but cert not started
client4 blah blah 2-Cert In Progress
client5 blah blah 3-Cert Complete
client6 blah blah 4-Production Prep (post-cert)
client7 blah blah 5A-Project complete/partially compliant
client8 blah blah 5B-Project complete/fully compliant
client9 blah blah 6 - Project canceled
client10 blah blah 0A-Project Not Opened; Not Expected
client11 blah blah 1-Project Opened, but cert not started
(On a different sheet)
Client Project Status
client3 1-Project Opened, but cert not started
client4 2-Cert In Progress
client5 3-Cert Complete
client6 4-Production Prep (post-cert)
client7 5A-Project complete/partially compliant
client8 5B-Project complete/fully compliant
client11 1-Project Opened, but cert not started
Thanks advance for the help!
I'm a VBA newbie. I'm tasked with creating a report of Client's with certain project statuses. I want to create this report on a separate sheet that already has some other data. The Advanced Filter almost does what I want, but it has two issues. I don't like that it hides the rows to create the filtered list. And it doesn't seem to update the filtered list when a Client status changes. Hoping that someone can help with some VBA to do this.
Trying to draw it out.. Want to only get project statuses that are >=1 and <=5B. And want the report to update automatically when a project status changes. I'd like to keep all the data out of the VBA as well, so someone can edit without getting into VBA.
Client Misc data Misc data2 Project Statusclient1 blah blah 0A-Project Not Opened; Not Expected
client2 blah blah 0B-Project Not Opened; Expected
client3 blah blah 1-Project Opened, but cert not started
client4 blah blah 2-Cert In Progress
client5 blah blah 3-Cert Complete
client6 blah blah 4-Production Prep (post-cert)
client7 blah blah 5A-Project complete/partially compliant
client8 blah blah 5B-Project complete/fully compliant
client9 blah blah 6 - Project canceled
client10 blah blah 0A-Project Not Opened; Not Expected
client11 blah blah 1-Project Opened, but cert not started
(On a different sheet)
Client Project Status
client3 1-Project Opened, but cert not started
client4 2-Cert In Progress
client5 3-Cert Complete
client6 4-Production Prep (post-cert)
client7 5A-Project complete/partially compliant
client8 5B-Project complete/fully compliant
client11 1-Project Opened, but cert not started
Thanks advance for the help!