Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

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 floorplan if there isn't one selection in filters for building and floor? I would like to use such case to place logo or some message to instruct user what to do, because random floorplans are misleading.

Thanks, 

Tom

  • Anonymous's avatar
    Anonymous
    8 years ago
    I talked with author of Synoptic Visual and that isn't possible.

6 Replies

  • v-piga-msft's avatar
    v-piga-msft
    Icon for Resident Rockstar rankResident Rockstar

    Hi Anonymous,

     

    By my tests, I cannot reproduce your scenario clearly.

     

    if it is convenient, could you share a dummy pbix file which can reproduce the scenario, so that we can help further investigate on it? You can upload it to OneDrive or Dropbox and post the link here. Do mask sensitive data before uploading.)

     

    Best Regards,

    Cherry

    • Anonymous's avatar
      Anonymous
      Not applicable
      https://drive.google.com/file/d/1dnSJaLBEuy57wBk-9PQrakQxZ4yTVEX-/view?usp=sharing

      So I want to display Logo when no filter is selected, or more then one item per filter is selected.

      • v-piga-msft's avatar
        v-piga-msft
        Icon for Resident Rockstar rankResident 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