Forum Discussion

utsavlexmark's avatar
utsavlexmark
Icon for Helper III rankHelper III
8 years ago
Solved

% of Change not working with Filter

Hello, I am working on a dashboard for our Paid Search Campaign. Different campaigns are having different ID and the datasource containing data for each and every campaign ID.   I am trying to set...
  • TomMartens's avatar
    8 years ago

    Hey,

     

    from looking at your DAX Statement for your measure "Previous Week Order" you use

    ALL('Sheet1 (2)')

    This ALL statement also "resets" the filtering of the underlying data to ALL campaigns, use this instead
    ALL(
    'Sheet1 (2)'[Week]
    ,'Sheet1 (2)'[Year]
    )

     

    Hopefully this is what you are looking for

     

    Regards,

    Tom