Forum Discussion
Using a Slicer to Indirectly Filter a Line Chart
- 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'))
You may have to upload another example file, I'm not really sure what you are seeing or why. When I applied the fix to your example file I don't think it changed the tooltips at all.
Here is a link to the new file.
And here is a link to an image of what I am seeing.
Sorry for the late replay. I have been on holiday.
- d_gosbell5 years agoSuper User
I assume you are talking about the Resouces page in your new file? In the bottom chart on that page you have explicitly added FTE_Check to the tooltip field well. If you remove that measure from the Tooltip I think this will fix your issue.
- Anonymous5 years agoNot applicable
Oh, geez! What a rookie mistake. Thank you.