Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hello, I want to show some value on slicer base on another slicer. My slicer View By and Status are made from field Parameter.
When I select
View By: Supplier --> Show Only Status by Supplier and Complete by Supplier
View By: Files --> Show Only Status by File and Complete by File
View By:
View By Status:
Solved! Go to Solution.
From what I understand, you want the values of second slicer (Status slicer) to be dependent on first slicer (View by slicer). If yes then follow these steps
1. create a new column in second field parameter table, put the column name as "View By"
2. You can create this column either by modifying the dax expression of the table i.e add 4 value in each row likw below
{
("Status by File", NAMEOF('EJV' [status by File]), 0, "File""),
("Status by Supplier", NAMEOF('EJV' [status by supplier]), 1, "Supplier""),
("Complete by Supplier", NAMEOF('EJV' [completenes by supplier]), 2,"Supplier""),
("Complete by File", NAMEOF('EJV' [Completeness by File]), 3,"File")
}
Or by creating a new conditional column.
3. Link these two tables, View by table and Supplier table with a relationship (Viewby[Viewby] -> Supplier[Viewby])
4. Thats it
Need a Power BI Consultation? Hire me on Upwork
Connect on LinkedIn
|
From what I understand, you want the values of second slicer (Status slicer) to be dependent on first slicer (View by slicer). If yes then follow these steps
1. create a new column in second field parameter table, put the column name as "View By"
2. You can create this column either by modifying the dax expression of the table i.e add 4 value in each row likw below
{
("Status by File", NAMEOF('EJV' [status by File]), 0, "File""),
("Status by Supplier", NAMEOF('EJV' [status by supplier]), 1, "Supplier""),
("Complete by Supplier", NAMEOF('EJV' [completenes by supplier]), 2,"Supplier""),
("Complete by File", NAMEOF('EJV' [Completeness by File]), 3,"File")
}
Or by creating a new conditional column.
3. Link these two tables, View by table and Supplier table with a relationship (Viewby[Viewby] -> Supplier[Viewby])
4. Thats it
Need a Power BI Consultation? Hire me on Upwork
Connect on LinkedIn
|
It's Work! Thank you
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
10 | |
10 | |
9 | |
9 |
User | Count |
---|---|
20 | |
13 | |
13 | |
11 | |
8 |