I want to store the multiple criteria of a SUMIFS function in a single cell with each individual criteria separated by a comma.
I realize you can do this by having each criteria in a separate cell, but I need to have each criteria in a single cell separated by commas (or some other delimiter).
The closest I've gotten is seen in the screenshot below. Cell E4 is the formula if I hard code the criteria (an account of 500 or 600). However, if I put those criteria in the criteria cell, E2, and reference the E2's value/contents through the CELL function, it returns the value "500","600" as """500"",""600""" because it escapes the double quotes and then interprets the value as a text string rather than a list of texts.
Does anyone know how to make cell E2's value be a list of text/strings so that it can be passed into the SUMIFS criteria parameter?