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 sho...
  • v-zhangti's avatar
    2 years ago

    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.