The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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, Date.Year = 2019)), but thats not working!
Solved! Go to Solution.
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)
)
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)
)
Please accept it as a solution so that other people who have the same question can find it faster.
Thank you.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
114 | |
81 | |
78 | |
44 | |
39 |
User | Count |
---|---|
150 | |
116 | |
68 | |
64 | |
57 |