Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Count measure for specific years

Hi,   I want to count all the days in my data for the year 2019. How can I filter to only those days with a measure?   I came up with something like this: Measure = COUNTAX(FILTER(Date_Table, Dat...
  • Syndicate_Admin's avatar
    4 years ago

    Good afternoon dear.

    Do you want to count the amount of data that has a date in the year 2019?

    If so, I advise you this DAX

    CountRows = 
    COUNTROWS (
        FILTER ( 'Table', 'Table'[Column1].[ Year] = 2019)
    )