adrianbuliga
New Member
- Joined
- Sep 18, 2014
- Messages
- 2
hello,
Please help me with a code for something that…i consider…complicated
To be more explicit, I’ll give you an example (my table has around 500 rows and continuously piles-up):
I have a table like this:
<tbody>
</tbody>
and I want a VBA macro that will search on the B column for a specific text, let’s say „ARY”, meaning that I want to search also inside the words, not only words that begin with (as an observation some cells has more than 1 word)… and return somewhere on the sheet (or on another sheet) a new table that will contain ONLY the rows that meets the criteria. In this case would be:
<tbody>
</tbody>
Thank you in advance for help,
Adrian
Please help me with a code for something that…i consider…complicated
To be more explicit, I’ll give you an example (my table has around 500 rows and continuously piles-up):
I have a table like this:
A | B | |
1 | January | 31 |
2 | February | 28 |
3 | March | 31 |
4 | April | 30 |
5 | May | 31 |
6 | June | 30 |
<tbody>
</tbody>
and I want a VBA macro that will search on the B column for a specific text, let’s say „ARY”, meaning that I want to search also inside the words, not only words that begin with (as an observation some cells has more than 1 word)… and return somewhere on the sheet (or on another sheet) a new table that will contain ONLY the rows that meets the criteria. In this case would be:
A | B | |
15 | January | 31 |
16 | February | 28 |
<tbody>
</tbody>
Thank you in advance for help,
Adrian