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?
rshenk3
Mar 30, 2023Copper 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.
Harun24HR
Mar 30, 2023Bronze Contributor
rshenk3 First clarify, are you Excel or google-sheet? SPLIT() is function of google-sheet, not excel. To split multiple values at a time you need to array formula. So, try-
=SUM(ArrayFormula(SPLIT((FILTER('Order Import'!X:X,'Order Import'!AD:AD=A14),",",FALSE))))