Forum Discussion

Arioli_Chezhian's avatar
2 years ago
Solved

TotalYTD performance based on Slicer filter

Hello everyone,
I have a totalytd measure, and creating a bar chart based on date and total sales. Also I have a slicer which contains Month Name. If I filter for March month, the bar chart will show data only for March month  but my requirement should be like the visual should display till March month (Jan, Feb and Mar). Likewise if I select June month in the slicer, the bar chart should display data from January to June.

How to achieve this, please advice.

  • Hi, Arioli_Chezhian 

     

    You can try the following methods.

    Measure = 
    IF ( SELECTEDVALUE ( 'Slicer table'[Date] ) = BLANK (),
        1,
        IF ( SELECTEDVALUE ( 'Table'[Date] ) <= SELECTEDVALUE ( 'Slicer table'[Date] )
         && YEAR ( SELECTEDVALUE ( 'Table'[Date] ) ) = YEAR ( SELECTEDVALUE ( 'Slicer table'[Date] ) ),
            1,
            0 ) )

    Is this the result you expect? Please see the attached document.

     

    Best Regards,

    Community Support Team _Charlotte

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

     

6 Replies