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 Everyone,
I tried to implement Fiscal years of data by using start dat and end date so I want to create new column for startdate using ascending and end date using descending and then sum of all other four columns based on that date. But I didn't get an exact output.. I attched my screenshot for what I want to achieve in powerbi. Kindly help me as soon as possible...
Advance thanks to all
HI @Anonymous,
It seems like a common analysis across multiple date fields, I'd like to suggest you take a look at below blog 'start date', 'end date' part if it suitable for your requirement:
Regards,
Xiaoxin Sheng
@Anonymous , Nor very clear, Only thin I am getting start date or end date should be between fiscal year.
Please note the slicer/date table should not be connected with the table or use crossfilter to remove join
measure =
var _max = maxx(allselected(Date),Date[Date])
var _min = minx(allselected(Date),Date[Date])
return
calculate(sum(Table[Data]), filter(Table,(Table[Start Date]<=_max && Table[Start Date]>=_min )|| ( Table[end Date]<=_max && Table[end Date]>=_min)))
Thanks for your reply. I tried your measure but it gives the measure based on dates but I want to show my expected output like the screenshot. I want to show the start date and end date along with the sum of the test1, test2, test3, test4 also shown in a table structure.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.