This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi,
I am trying to count the number of rows I have by year. The calculation I am using is below but it looks like it is counting all of my rows and not filtering by year because I don't have any events in 2005? Any help would be greatly appreciated.
Solved! Go to Solution.
The issue in your DAX expression is with the placement of the closing parenthesis in the CALCULATE function. You need to move the closing parenthesis for the YEAR function to the correct position. Make sure that the 'eventDate' column in the 'Data' table contains valid dates, and the year is extracted correctly by the YEAR function.
Here's the corrected DAX expression:
2005Count = CALCULATE(COUNTROWS(Data), YEAR(Data[eventDate]) = 2005)
Hi,
You should ideally create a Calendar Table with a calculated column of Year. Create a relationship (Many to One and Single) from the Event Date column to the Date column. To your visual, drag Year from the Calendar Table. Write this measure
Count = countrows(Data)
Hope this helps.
The issue in your DAX expression is with the placement of the closing parenthesis in the CALCULATE function. You need to move the closing parenthesis for the YEAR function to the correct position. Make sure that the 'eventDate' column in the 'Data' table contains valid dates, and the year is extracted correctly by the YEAR function.
Here's the corrected DAX expression:
2005Count = CALCULATE(COUNTROWS(Data), YEAR(Data[eventDate]) = 2005)
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 32 | |
| 26 | |
| 25 | |
| 24 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 48 | |
| 27 | |
| 23 | |
| 20 |