Hi I work in Software testing and each morning I like to export the defect log into Excel.
I created a macro to format everything nicely and autofilter for active defects, but I find that every week or two I have another value to the filter list (new defect statutes get created periodically).
What I really want to do is autofilter for everything EXCEPT "Closed" and "Canceled". Is there a way to do that?
Here's my current autofilter line:
Instead of adding the values I want shown, I want to add the values that I want hidden, since the shown list keeps changing but the hidden list stays static (just Closed and Canceled). Is this possible?
Thanks!
Pinny
I created a macro to format everything nicely and autofilter for active defects, but I find that every week or two I have another value to the filter list (new defect statutes get created periodically).
What I really want to do is autofilter for everything EXCEPT "Closed" and "Canceled". Is there a way to do that?
Here's my current autofilter line:
Code:
Defect_Table.AutoFilter Field:=2, Criteria1:=Array("In Coding - Tech", _
"New", "Ready for Retest", "Ready for Tech", "Retest Failed", _
"Retest Passed", "Watch", "Researching - Tech", _
"Researching - Admin"), Operator:=xlFilterValues
Instead of adding the values I want shown, I want to add the values that I want hidden, since the shown list keeps changing but the hidden list stays static (just Closed and Canceled). Is this possible?
Thanks!
Pinny