The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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])