Forum Discussion

timward10's avatar
timward10
Helper II
1 year ago
Solved

Formula

Hi,    I am trying to pull back the count of the account in another table, but also include a filter to select the date.    Currently for the count, it is just bringing back a total instead of it...
  • johnt75's avatar
    johnt75
    1 year ago

    You could use

    Jan'25 =
    CALCULATE (
        COUNTROWS ( Event ),
        FILTER (
            Event,
            Event[Account Name] = Test[Name]
                && Event[Activity Date (Month Year)] = "Jan 2025"
        )
    )