Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
Is it possible to create a Date flag based on Date slicer selection. Flag should only have Current Date (i.e. slicer value) and previous Date of slicer Date. My requirement is to use a measure along with this flag that will automatically change values for Current/Previous Dates based on slicer selection. TIA.
Solved! Go to Solution.
Hi @kumsha1 ,
Based on your description, you need to create another date table and use it as a slicer:
Table = DISTINCT('Calendar'[Date])
Create this tag measure:
Tag =
VAR date1 =
SELECTEDVALUE ( 'Table'[Date] )
VAR date2 =
SELECTEDVALUE ( 'Calendar'[Date] )
RETURN
IF ( date2 <= date1, 1, 0 )
Attached a sample file in the below, hopes to help you.
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @kumsha1 ,
Based on your description, you need to create another date table and use it as a slicer:
Table = DISTINCT('Calendar'[Date])
Create this tag measure:
Tag =
VAR date1 =
SELECTEDVALUE ( 'Table'[Date] )
VAR date2 =
SELECTEDVALUE ( 'Calendar'[Date] )
RETURN
IF ( date2 <= date1, 1, 0 )
Attached a sample file in the below, hopes to help you.
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@kumsha1 , for that you can create measure like this, assume the date is from date table
This Day = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Date]=max('Date'[Date])))
Last Day = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Date]=max('Date'[Date])-1))
Last Day = CALCULATE(sum('order'[Qty]), previousday('Date'[Date]))
Day behind Sales = CALCULATE(SUM(Sales[Sales Amount]),dateadd('Date'[Date],-1,Day))