Formula Tried:
=SUMIFS({Sheet - TCO Cloud Cost Savings Monthly Savings}, HAS({Sheet - TCO Cloud Cost Savings Business Application}, [Business Application]@row), {Sheet - TCO Cloud Cost Savings Savings Status}, "Complete")
Error: Incorrect argument set
I'm trying to create a metrics sheet that sums values from another sheet based on multi-select column matches. My formula keeps returning an "incorrect argument" error.
What I'm trying to accomplish: I need to calculate the total sum of [Monthly Savings] where:
- The [Business Application] column contains the value from [Business Application] in the current row
- The [Savings Status] equals "Complete"
=SUM(IF(HAS({Sheet - TCO Cloud Cost Savings Business Application}, [Business Application]@row), ….
I can get the formula to work on the primary sheet, but I have to provide the Business Application name in quotes.
On page formula:
=SUMIFS([Monthly Savings]:[Monthly Savings], [Business Application]:[Business Application], HAS(@cell, "App Name"), [Savings Status]:[Savings Status], "Complete")
Since the application list is so long, I prefer to use the metrics sheet, making the formula set to the column, so that as applications are added, the reporting dashboard will automatically reflect it.