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
Hello
I have calendar date slicer having values for current month Sample value Calendar date : 2021-06-18'. when user selects value how can i write expression to get prior 7th day value from calendardate data.?
If selected value is 2021-06-18. 2nd calculated column should return 2021-06-11..
Thanks
Ref
Solved! Go to Solution.
Hi @refint650 ,
For measure you can use:
Last 7 days = MAX(Calendar[Date])-7
For calculated column:
Last 7 days = Calendar[Date]-7
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
Let me try syntax, thanks
Hi @refint650 ,
For measure you can use:
Last 7 days = MAX(Calendar[Date])-7
For calculated column:
Last 7 days = Calendar[Date]-7
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
Hi @refint650 !
You can use following DAX to create a measure to return Date value prior 7 days of selected date value;
Last 7 Date = CALCULATE(MIN('Calendar'[Date]), DATEADD('Calendar'[Date], -7, DAY))
Regards,
Hasham
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
82 | |
69 | |
53 | |
44 |
User | Count |
---|---|
202 | |
106 | |
100 | |
64 | |
56 |