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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
sonya7
Helper III
Helper III

last 6 months by date

I have line charts that I want to show the last 6 months based on the date filter. how can I do that?

 

 

3 REPLIES 3
v-zhangti
Community Support
Community Support

Hi, @sonya7 

 

You can try the following methods.
Sample data:

vzhangti_0-1662711041119.png

Create a new date table as a slicer.
Date table:

Date = CALENDAR(MIN('Table'[Date]),MAX('Table'[Date]))
Measure = 
Var Maxdate=SELECTEDVALUE('Date'[Date])
Var Mindate=eomonth(Maxdate, -6)
return
IF(SELECTEDVALUE('Table'[Date])>=Mindate&&SELECTEDVALUE('Table'[Date])<=Maxdate,1,0)

Put the measure in the line chart and set equal to 1.

vzhangti_1-1662711223108.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

it worked but why is it showing more than 6 months months? a metric is required to give the last 6 months of that year

amitchandak
Super User
Super User

@sonya7 , If you want select a date and then want to show 6 month data, the slicer needs to be on an independent date table 

 

example

//Date1 is independent Date table, Date is joined with Table
new measure =
var _max = maxx(allselected(Date1),Date1[Date])
var _min = eomonth(_max, -6) +1
return
calculate( sum(Table[Value]), filter('Date', 'Date'[Date] >=_min && 'Date'[Date] <=_max))

 

Need of an Independent Date Table:https://www.youtube.com/watch?v=44fGGmg9fHI

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.