How to cross reference a sheet to get the following information?
I have a sheet titled "Change Order Log" with the following columns. My overall goal was to sum up the "Approved Change Order Amount" by category.
Example: I used the following formula to come up with the sub-total for the "Regulatory Submissions" category.
=SUMIFS([Approved Change Order Amount.]:[Approved Change Order Amount.], Category:Category, CONTAINS("Regulatory Submissions", @cell), Status:Status, "Approved")
However, now I plan to create another sheet with two columns (category name and formula), as seen below:
I want to extract the data from the original sheet (aka "Change Order Log") and bring the sub-totals for each category into this new sheet. Is this possible? if so, which formula should I use?