Forum Discussion
Summarize table using a virtual table and Date Filter
- 3 years ago
MrBrown,
Calculated tables cannot interact with slicers because they are not dynamic; they are created at dataset refresh/query time.
However, what you can do is create the measure I shared above (if you didn't already have one), then follow the steps in this video. Using measures in a slicer is a commonly asked question so if that video doesn't work for you, there are a ton of other available resources out there. 🙂
----------------------------------
If this post helps, please consider accepting it as the solution to help other members find it quickly. Also, don't forget to hit that thumbs up and subscribe! (Oh, uh, wrong platform?)
Hello MrBrown,
Maybe I'm missing something but could you not just create a measure like:
Filter =
SWITCH (
SUM ( 'Table'[Valeur] ),
0, "Yes",
"No"
)
Then you could create a table visual with Id, a slicer with your date, then filter your table visual for Filter = "Yes" only?
If that doesn't work for you, can you share a link to a sample pbix?
----------------------------------
If this post helps, please consider accepting it as the solution to help other members find it quickly. Also, don't forget to hit that thumbs up and subscribe! (Oh, uh, wrong platform?)
- MrBrown3 years agoNew Member
Hello Wilson,
this response is a partial answer to the topic, I think you understood my problemBut I would like to have a filter on the values "Yes", and "No"
Here an exemple
https://drive.google.com/file/d/1drTUEuYLXup0t_vfdbZfh2IlH9k-ulf2/view?usp=sharing- Wilson_3 years agoMemorable Member
MrBrown,
Calculated tables cannot interact with slicers because they are not dynamic; they are created at dataset refresh/query time.
However, what you can do is create the measure I shared above (if you didn't already have one), then follow the steps in this video. Using measures in a slicer is a commonly asked question so if that video doesn't work for you, there are a ton of other available resources out there. 🙂
----------------------------------
If this post helps, please consider accepting it as the solution to help other members find it quickly. Also, don't forget to hit that thumbs up and subscribe! (Oh, uh, wrong platform?)- MrBrown3 years agoNew Member
thanks ! it's was exactly what i need! didn't know that we can use a measure as a slicer 🙂