Hello, I have some issues on presenting certain data from a file in a specific way. So, I would like to create a formula and sum the appropriate rows of my file. This is essential in order to correctly match those rows with another file. Please see below an example:
Column as is now:
Column 1 | Stage | Line | Data1 | Data2 |
Apple | Stage I-III | ALL LINES | 5 | 8 |
Apple | Stage IV | ALL LINES | 2 | 6 |
Apple | Stage IV | FIRST LINE | 1 | 7 |
Banana | Stage I-III | ALL LINES | 6 | 4 |
Banana | Stage IV | ALL LINES | 7 | 8 |
Column as I want it to be:
Column 1 | Stage | Line | Data1 | Data2 |
Apple | ALL STAGES | ALL LINES | 7 | 14 |
Apple | Stage IV | FIRST LINE | 1 | 7 |
Banana | ALL STAGES | ALL LINES | 13 | 12 |
As you can see in this example, I would like to combine the first 2 rows and the last 2 rows of the ‘stage’ column, and name the cells as ‘ALL STAGES’ and sum the numbers in columns ‘Data1’ and ‘Data2’. Could you please help me with this? Thank you!