Hi everyone,
I have a column [Current] with numerical data:
| Current |
| 123 |
| 6 |
| 22 |
| 74 |
| 124 |
| 98 |
| 765 |
| 951 |
| 123 |
| 6 |
| 76 |
| 49 |
I'm trying to work out a way that if the cell CONTAINS value 123 then that row plus the next 3 rows down will be deleted. If the cell does not contain 123 then this action will not be triggered until 123 is found. So, the desired result would be:
The values in the 3 cells below the 123 cells are completely random. I can't quite figure out an efficient way of doing this. Any ideas?
Thanks!