Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi
I don't have date column in my data set but i have period(month) like 1,2,3...12. how can i do YTD calculations without having dates.
I want to create a graph visual of YTD by sales organisation.
Thanks,
Paruchuri
Solved! Go to Solution.
YTD is all months until the one selected, so something like this would work:
Measure YTD =
VAR SelectedMonth =
MAX ( Table[Period] )
RETURN
CALCULATE (
[Measure],
FILTER ( ALL ( Table[Period] ), Table[Period] <= SelectedMonth )
)
YTD is all months until the one selected, so something like this would work:
Measure YTD =
VAR SelectedMonth =
MAX ( Table[Period] )
RETURN
CALCULATE (
[Measure],
FILTER ( ALL ( Table[Period] ), Table[Period] <= SelectedMonth )
)
Hi Stachu,
Thanks for your reply. In calculate function you have used [Measure]. What it is refering to?
you should replace it with whatever measure you want to calculate, e.g.
SUM(Table[Column])
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 49 | |
| 42 |