I have a report that lists data in column A and then "X"s in columns B-F.
I want to delete the rows which do not have an "X".
What is the easiest way to do this? Macro? VBA? I'm a real beginner with VBA.
For example:
This is what I have now...
A B C D E F
1 Tom X
2 Sally
3 Mike X X
4 Jim X
This is what I want....
1 Tom X
2 Mike X X
3. Jim X
I want to delete the rows which do not have an "X".
What is the easiest way to do this? Macro? VBA? I'm a real beginner with VBA.
For example:
This is what I have now...
A B C D E F
1 Tom X
2 Sally
3 Mike X X
4 Jim X
This is what I want....
1 Tom X
2 Mike X X
3. Jim X