Hello,
i need to keep few specific rows after certain word from the data sheet. how can i pick those certain rows. based on these following data how can i keep all rows after Type Green. (please note Green is now in 2nd rows but this order can be change month over month so Rows# can't work and i need to do this sorted based on Type which is green in this example)
Input data
| Type | Item | Exp | Income |
| YELLOW | A | 50 | 100 |
| GREEN | B | 60 | 220 |
| RED | C | 40 | 540 |
| BLACK | D | 20 | 620 |
Expected Output Data
| Type | Item | Exp | Income |
| RED | C | 40 | 540 |
| BLACK | D | 20 | 620 |