Search code examples
functiongoogle-sheetssumgoogle-sheets-formulavlookup

Monthly Summary if Available in List of name and Need to show Monthly total against the Name


Thanks lot for considering I have specific list of COdes (ABC, BCD, ......., JKL), Then separately I am maintain the another location with those list of code plus another separate words (Like - Off, ON, .... etc)

So I need to get the Monthly total for Each name, When look make sure to count only the list of codes and Other word need to ignore. Example Need to count only ABC, BCD ,.... In each month.

You can get my example in below G sheet, also Feel Free to contact me for any clarification.

https://docs.google.com/spreadsheets/d/1bKA1KOs36ZDfR6VY18Md260MaFJWvO8uY3zto8jscOE/edit?usp=sharing

Sample

Indika


Solution

  • use:

    =ARRAYFORMULA(QUERY(SPLIT(FLATTEN(C3:C12&"×"&TEXT(D2:O2, "yy-mmm×")&
     XLOOKUP(D3:O12, A3:A, IFERROR(A3:A/0, 1),,,1)), "×"), 
     "select Col1,sum(Col3) group by Col1 pivot Col2"))
    

    enter image description here