Hi Everyone,
I'm currently working on parsing out pieces of a messy Excel file and would like to get a list of deliverables under a heading.
The problem is, the deliverables heading is always in the same column but not always the same row, and each deliverables list varies in length. The deliverables sections are, however, always preceded by a NULL row and end with a NULL row. So the data looks like:
null |
Deliverables: |
Deliverable 1 |
Deliverable 2 |
null |
I would like to write a formula that looks for the "Deliverables" heading and marks each deliverable until it hits a null row. So by the time the formula is finished, it looks like:
null | False |
Deliverables: | False |
Deliverable 1 | True |
Deliverable 2 | True |
null | False |
Any help would be greatly appreciated. Thank you!