March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Solved! Go to Solution.
Hi @daveinitiv ,
For showing only the last 7 days, you could create a measure for filtering.
Measure = var _max=MAXX(ALL('Table'),[Date])
return IF(_max>=MAX('Table'[Date])&&_max-7<MAX('Table'[Date]),1)
After putting the measure into the visual-level filters and setting up show items when the value is 1, the visual shows the last 7 days only.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Last7day_qty=
VAR datetb= datesinperiod(dimtable[date],max(dimtable[date],-7,day)
VAR last7qty=calculate ([ total quantity],datetb)
VAR selection _fliter=selected value (dimtable [ date]
VAR max_date_last7qty=MAXX (SUMMARIZE (dimtable, dimtable [ date],"maxdate",MAX(dimtable [date])),[total quantity])
return
IF(selection_filter,last7qty,max_date_last7qty)
Feel free to contact:6304729084
Hi @daveinitiv ,
You should try
Quantity last week = CALCULATE([Quantity],FILTER(ALLSELECTED('Table'),[Date]>MAX('Table'[Date])-7&&[Date]<=MAX('Table'[Date])))
Here's an example for this measure.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Stephen,
thanks a lot for your efforts!
But I need something different, actually (sorry I wasn't 100% clear about that, I just noticed):
I want the visual to display to always only the last 7 days in dates. So the daily value for each datapoint, but in the date column only the last 7 days displayed.
I know there is a possibility to achieve a similar thing via the visual filters, but this gives me not enough flexibility (it always calculates last 7 days from today, so when I change the filtercontext to, say, 2 months ago, nothing will be displayed anymore).
It should always work like this: maximum date selected minus 7 on the date value. if no filter selection is made, max date in sales data minus 7 days.
I hope it was kind of clear (sorry, english is not my native language).
Thank you!
BR
David
Hi @daveinitiv ,
For showing only the last 7 days, you could create a measure for filtering.
Measure = var _max=MAXX(ALL('Table'),[Date])
return IF(_max>=MAX('Table'[Date])&&_max-7<MAX('Table'[Date]),1)
After putting the measure into the visual-level filters and setting up show items when the value is 1, the visual shows the last 7 days only.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Stephen,
that's brilliant thanks, I was able to get the solution with a slightly modified formula, which I would never arrived at without your help!
This was the final one that got it solved:
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
25 | |
18 | |
15 | |
9 | |
8 |
User | Count |
---|---|
37 | |
32 | |
21 | |
16 | |
14 |