Forum Discussion
rshenk3
Mar 30, 2023Copper Contributor
Summing Split Filtered Values
Is it possible to SUM a list of SPLIT values that were compiled using the FILTER function, all in one formula?
- mathetesSilver Contributor
Normally you can simply write =SUM(FILTER(range, criteria...))
But maybe you've already tried that. Are you saying that the contents of rows 17 through 24 of your image are what you want to sum? You write SPLIT as if it itself is a function; it's not, at least not included in any resources I'm seeing.
- rshenk3Copper Contributor
Thank you for your reply!
This is the formula I tried using
=SUM(SPLIT((FILTER('Order Import'!X:X,'Order Import'!AD:AD=A14),",",FALSE)))
but it only returns the sum of the first cell in the filter. I would like it to return the sum of all the values returned by the FILTER function.