Forum Discussion
jmart320
Apr 05, 2023Copper Contributor
Can't find a function that works like sumifs but finds the summary column via a criteria.
I have a database I'm building that I need to reference to an old form, however, I can't seem to find a function that does what I need it to do. One of my favorite formulas is the SUMIFS, which I ca...
Patrick2788
Apr 05, 2023Silver Contributor
You could use a double XLOOKUP like this:
=XLOOKUP(F2&F3,dept&code,XLOOKUP(F1,months,data))My example only uses two criteria but you get the idea.