Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello.
I have an issue with my current Power BI module. I have created a matrix table. In this table I have put the a column called population in households. I then created a parameter with a slider that is a percentage between 0%-100%. The Parameter is called Population When I created a measure called Adjusted Weighted Population. The formula went like this Adjusted weighted Population=Sumx(all_states_mobility, all_states_mobility[Population in households] * )1+Population[Population Value]. I then created a new column called Adjusted Population. The formula for that column goes like this
What I am trying to accomplish is to be able to change the value on the slider and have the values in the column on the matrix table change as well. The purpose of a slider is to demonstrate the weight of a category such as Population in Households. I plan on creating slider as weights for other categories but need to figure out how this works. Please let me know.
Hi,
Here is how I would approach these kind of custom slicers:
Demo data:
Now in my example I will filter the values which are greater than 0.7 when multiplied by two. This is different than in your example, but the way I will create this slicer can be applied to your case as well.
Slicer:
Dax:
Filter measure for matrix = IF(MAX('Table (17)'[Value])*2>[Filter for values greater than this Value],1,0)
Now we will place this measure to the matrix as a filter:
When the parameter is adjusted the values change:
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/
Proud to be a Super User!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 13 | |
| 8 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 29 | |
| 19 | |
| 18 | |
| 11 | |
| 10 |