Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Using a Slicer to Indirectly Filter a Line Chart

I have a scenario I need help with.   BACKGROUND   I have a table of data that contains the following columns. Project Person Date Hours Type FTE   There are two slicers. These slicers are...
  • d_gosbell's avatar
    5 years ago

    Ok, so the issue here is because your data model is different to what you described in your first post. In there you only mentioned a single table, so I shared code that would work with a single table, but because you have a separate calendar table and columns from that are on the axis of your graph you should create a measure like the following and use that to filter your slicer and graph

     

    FTE (all time) = CALCULATE( SUM( 'Master Filtered'[FTE] ) , ALL('Calendar'))