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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
I have a working days column that has the working days between submission of an issue, and resolution (i.e. 35, for 35 business days)
I want to create a DAX measure that shows the average for 2020 year only by filtering by submission date, and calculating average
| ReqNo | Submission Date | Business Days |
| 1 | 3/4/2020 | 7 |
| 2 | 1/1/2021 | 55 |
In the above table, for example, I only want this DAX measure to average 7, since that's in 2020. How can I achieve this?
Solved! Go to Solution.
@Anonymous , Try a measure like
calculate(Average(Table[Business Days]), filter(Table, year(Table[Submission Date]) =2020))
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 52 | |
| 45 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 108 | |
| 106 | |
| 39 | |
| 33 | |
| 25 |