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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
kumsha1
Post Patron
Post Patron

Date flag based on slicer selection and Dynamic measure values

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.

1 ACCEPTED SOLUTION
v-yingjl
Community Support
Community Support

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 )

re.png

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.

View solution in original post

2 REPLIES 2
v-yingjl
Community Support
Community Support

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 )

re.png

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.

amitchandak
Super User
Super User

@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))

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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