Forum Discussion
Anonymous
8 years agoNot applicable
Synoptic Panel by OKviz
HI, I'm using Synoptic Panel to display floor plans when one building and one floor are selected in filters. And that works fine. What I do not understand is what is the logic of displaying random ...
- Anonymous8 years agoI talked with author of Synoptic Visual and that isn't possible.
v-piga-msft
8 years agoResident Rockstar
Hi Anonymous,
You could refer to the measure below and put the measure to the Field Measure in the visual.
Measure =
IF (
OR ( ISFILTERED ( Table2[Building] ), ISFILTERED ( Table2[Number] ) ),
MAX ( 'tblGitLinksForFloorPlans'[Building_Floor] ),
CALCULATE (
MAX ( 'tblGitLinksForFloorPlans'[GIT_LINK] ),
FILTER (
'tblGitLinksForFloorPlans',
'tblGitLinksForFloorPlans'[Building_Floor] = "LOGO"
)
)
)
Then the Logo will be displayed when no filter is selected.
You could modify the measure above acording to your requirement.
You also have a reference of my test file which has been attached.
Hope this is your expected.
Best Regards,
Cherry
Anonymous
8 years agoNot applicable
Sorry I tried to apply your measure but measure doesn't change underlying svg in synoptic panel. For this to work I would need to find a way to filter table with svg links based on measure, and I do not know if that is even possible. Map field in synoptic visual is critical one.
- Anonymous8 years agoNot applicableI talked with author of Synoptic Visual and that isn't possible.