Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

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.

Reply
Anonymous
Not applicable

Use of dynamic measures

image.png

Measures

Count Cafe Coffee = COUNT(Coffee[Cafe Coffee])
Count Home Coffee = COUNT(Coffee[Home Coffee])
Count None of these Coffee = COUNT(Coffee[None of these])
Count Office Coffee = COUNT(Coffee[Office Coffee])
Count On-the-go Coffee = COUNT(Coffee[On-the-go Coffee])
 
Dynamice Measure
Dynamic Measure Places =
SWITCH (
    SELECTEDVALUE ( 'Select Places'[Select Places] ),
    "Home Coffee", Coffee[Count Home Coffee],
    "Cafe Coffee",Coffee[Count Cafe Coffee],
    "Office Coffee",Coffee[Count Office Coffee],
    "On-the-go",Coffee[Count On-the-go Coffee],
    "None Of these",Coffee[Count None of these Coffee]
)
Parameter
Select Places = {
    ("Home Coffee", NAMEOF('Coffee'[Count Home Coffee]), 0),
    ("Cafe Coffee", NAMEOF('Coffee'[Count Cafe Coffee]), 1),
    ("Office Coffee", NAMEOF('Coffee'[Count Office Coffee]), 2),
    ("On-the-go Coffee", NAMEOF('Coffee'[Count On-the-go Coffee]), 3),
    ("None of these Coffee", NAMEOF('Coffee'[Count None of these Coffee]), 4)
}
I have created Individual measures->Dynamic Measures and created Parameter 
when i select any of the places from the slicer it should display that particular chart only 
for instance when i select Home Coffee then it should Display the same chart of Home Coffee just as it is in the image; when i select Cafe Coffee it should Display the same chart of Cafe Coffee just as it is in the image and the same for the rest of the two
in short one slicer one chart 
i dont know how should i do it 
Can anyone help me with this query ?
1 ACCEPTED SOLUTION
some_bih
Super User
Super User

Hi @Anonymous check link for bookmarks and another one 

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!






View solution in original post

2 REPLIES 2
some_bih
Super User
Super User

Hi @Anonymous check link for bookmarks and another one 

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!






Anonymous
Not applicable

thank so much @Some_bih for the solution 🙂

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.