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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

Top Solution Authors