Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Visual Interactions?

Hi,   I have a report with  bar graph visuals that detect various levels of date aggregations, example WTD, PTD and YTD   I then want to build a set of visuals that will display the data over ano...
  • v-kkf-msft's avatar
    4 years ago

    Hi Anonymous ,

     

    I am not sure if I understood your question correctly. What do you mean by showing only 3 days?

    If you want to display the last 28 days of data when you select WTD, please try the following measure.

     

    Measure = 
    VAR _WTD =
        CALCULATE (
            SUM ( 'Table'[Value] ),
            FILTER (
                'Calendar',
                'Calendar'[Date]
                    > TODAY () - 28
                    && 'Calendar'[Date] <= TODAY ()
            )
        )
    RETURN
        SWITCH ( SELECTEDVALUE ( Slicer[Site] ), "WTD", _WTD, SUM ( 'Table'[Value] ) )

     

    If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
    Best Regards,
    Winniz
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.