Forum Discussion

Hendew44's avatar
Hendew44
Copper Contributor
Jan 14, 2024
Solved

I am trying to create a formula to calculate home and away games using two criteria.

I am trying to create a formula using multiple criteria. I am trying to match two criteria Column C (date) and column F (Home="" Away=@) There are multiple occurrences for each match. For excample, c...
  • OliverScheurich's avatar
    Jan 14, 2024

    Hendew44 

    Away games:

    =COUNT(UNIQUE(FILTER(C3:C26,F3:F26="@")))

    Home games:

    =COUNT(UNIQUE(FILTER(C3:C26,F3:F26="")))

     

    If you have access to FILTER and UNIQUE you can apply these formulas.

Resources