Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
how can i roll one year backwards. if new dates are coming then the rolling can automatically updates. how can it possible? This is the table of my input:
how can i create a query if the latestdate to one year backwards &count the males one year backward with respect to latest year.
Hey,
I'm not sure if I fully understand your requirement.
But maybe this measure counts the no of males for the last year:
Measure =
var maxYear = YEAR(MAX('Simple Facts'[Date]))
return
CALCULATE(
DISTINCTCOUNT('Simple Facts'[ID])
,'Simple Facts'[GENDER] = "M"
,YEAR('Simple Facts'[Date]) = maxYear
)Please keep in mind that you have to adjust the name of the column in the statement above.
Hopefully this is what your are looking for
Regards
Tom
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 22 | |
| 21 | |
| 20 | |
| 19 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 37 | |
| 31 | |
| 27 |