Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Start date for ascending and end date for descending issues

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...Start and end date.PNG

 

Advance thanks to all

3 REPLIES 3
Anonymous
Not applicable

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:

Before You Post, Read This  

Regards,

Xiaoxin Sheng

amitchandak
Super User
Super User

@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)))
Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

@amitchandak 

   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.  

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors