Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi,
I've a use case I need to put multiple charts in one place on top of other. I need a DropDown selector to choose the desired chart. How to achieve this in PowerBI? any help on this would be highly appreciated.
Solved! Go to Solution.
Hello @MuraliPrasathS
You can achieve your goal by segmenting and measureing.
I build a table (values) like yours and build a slicer table.
Mesa:
ProductName Table(Slicer Table):
Measure:
Chart Data Source =
VAR _Sel =
SELECTEDVALUE ( ProductName[ProductName] )
RETURN
IF (
ISFILTERED ( ProductName[ProductName] ),
SWITCH (
TRUE (),
_Sel = "ProductA", SUM ( 'Table'[ProductA] ),
_Sel = "ProductB", SUM ( 'Table'[ProductB] ),
SUM ( 'Table'[ProductC] )
),
BLANK ()
)
The result is as follows.
By default, it will be blank.
Select ProductA in the slicer:
You can download the pbix file from this link: DropDown option to select another chart
Best regards
Rico Zhou
If this post helps,then consider Accepting it as the solution to help other members find it faster.
Hello @MuraliPrasathS
You can achieve your goal by segmenting and measureing.
I build a table (values) like yours and build a slicer table.
Mesa:
ProductName Table(Slicer Table):
Measure:
Chart Data Source =
VAR _Sel =
SELECTEDVALUE ( ProductName[ProductName] )
RETURN
IF (
ISFILTERED ( ProductName[ProductName] ),
SWITCH (
TRUE (),
_Sel = "ProductA", SUM ( 'Table'[ProductA] ),
_Sel = "ProductB", SUM ( 'Table'[ProductB] ),
SUM ( 'Table'[ProductC] )
),
BLANK ()
)
The result is as follows.
By default, it will be blank.
Select ProductA in the slicer:
You can download the pbix file from this link: DropDown option to select another chart
Best regards
Rico Zhou
If this post helps,then consider Accepting it as the solution to help other members find it faster.
@Anonymous , I think you need bookmarks
https://www.youtube.com/watch?v=z9jdkyyE3WU
https://radacad.com/bookmarks-and-buttons-making-power-bi-charts-even-more-interactive
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.