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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
matrix_user
Helper III
Helper III

Date slicer with percent reader.

Hi Power Bi users,

 

What woudl be the best way to buld a card visual that would read out the percentage of the date slicer. 

The challenge would be that scrolling from either end reads the percentage: If you mover the left slicer dot to the right a quarter of the way, you get 75% reading and if you move the right slicer dot, a quarter to the right ,you get a 50% reading for the whole date range.

 

matrix_user_4-1648258656977.png

 

Thank you people.

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

hi @matrix_user 

you can try

Selected Date Range % =
VAR FirstDateEver =
    CALCULATE ( MIN ( Sales[Order Date] ), REMOVEFILTERS () )
VAR LastDateEver =
    CALCULATE ( MAX ( Sales[Order Date] ), REMOVEFILTERS () )
VAR FirstDateInFiltet =
    MIN ( Sales[Order Date] )
VAR LastDateInFiltet =
    MAX ( Sales[Order Date] )
RETURN
    DIVIDE (
        DATEDIFF ( FirstDateInFiltet, LastDateInFiltet, DAY ),
        DATEDIFF ( FirstDateEver, LastDateEver, DAY ),
        0
    )

But you have to know that if you have dates without sale then the calculated percentage might not be accurate for some selections.  Best is to have a date table. 

View solution in original post

2 REPLIES 2
matrix_user
Helper III
Helper III

Thanks Tamerj1

tamerj1
Super User
Super User

hi @matrix_user 

you can try

Selected Date Range % =
VAR FirstDateEver =
    CALCULATE ( MIN ( Sales[Order Date] ), REMOVEFILTERS () )
VAR LastDateEver =
    CALCULATE ( MAX ( Sales[Order Date] ), REMOVEFILTERS () )
VAR FirstDateInFiltet =
    MIN ( Sales[Order Date] )
VAR LastDateInFiltet =
    MAX ( Sales[Order Date] )
RETURN
    DIVIDE (
        DATEDIFF ( FirstDateInFiltet, LastDateInFiltet, DAY ),
        DATEDIFF ( FirstDateEver, LastDateEver, DAY ),
        0
    )

But you have to know that if you have dates without sale then the calculated percentage might not be accurate for some selections.  Best is to have a date table. 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.