I have a question regarding filtering text in columns in Excel / VBA. Here is my starting point (can't post images):
| Column1 | Column2 | Column3 |
|---|---|---|
| value1 | bla | bla |
| empty | bla | bla |
| value2 | bla | bla |
| value1 | bla | bla |
| empty | bla | bla |
| value2 | bla | bla |
What I want to do is to use a text filter on the "Column1" for "value1" so that the result includes the lines with the "empty" value in column1. The filtering result should look like that:
| Column1 | Column2 | Column3 |
|---|---|---|
| value1 | bla | bla |
| empty | bla | bla |
| value1 | bla | bla |
| empty | bla | bla |
However, when I use a normal text filter in Excel on column1 for "value1" I get this result, without the lines that have "empty" in Column1:
| Column1 | Column2 | Column3 |
|---|---|---|
| value1 | bla | bla |
| value1 | bla | bla |
What I lack is a general idea of how this could be done in Excel / VBA. Somehow the lines with empty should be "connected" to those with "value1" in kind of of a range? Any suggestions very much appreciated!!