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]
)
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 ?