Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have a simple sales report table with a field for the date, which includes year / month / day, and I want to create a role which filters the other information by the year but don't know how to express it.
I tried to enable date heirarchy and then deselect month / day, and then express it as: [Year] = "2013"
But I am new to Power BI (and scripting language in general)
Solved! Go to Solution.
Hi @Anonymous ,
You could try to add filter like the formula below.
Measure = CALCULATE(SUM('Table'[ Sales]),FILTER('Table','Table'[Date].[Year] = 2018))
Otherwise, you could create a new column of "YEAR" and then use it to filter.
YEAR = YEAR('Table'[Date])
Measure 2 = CALCULATE(SUM('Table'[ Sales]),FILTER('Table','Table'[YEAR] = 2018))
If I understand incorrectly, please share some sample data and your expected results. Then we will unerstand clearly.
Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Kudos are nice too.
Hi @Anonymous ,
You could try to add filter like the formula below.
Measure = CALCULATE(SUM('Table'[ Sales]),FILTER('Table','Table'[Date].[Year] = 2018))
Otherwise, you could create a new column of "YEAR" and then use it to filter.
YEAR = YEAR('Table'[Date])
Measure 2 = CALCULATE(SUM('Table'[ Sales]),FILTER('Table','Table'[YEAR] = 2018))
If I understand incorrectly, please share some sample data and your expected results. Then we will unerstand clearly.
Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Kudos are nice too.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 43 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |