Skip to main content

Hi,

I’ve run into an issue that I’m hoping someone can help with. We are doing a visualization that is loaded to a client portal. Behind the scenes, the portal is using OrgID to filter the Bar vis to the specific org information. 

 

I’d like to do a scatter plot showing all orgs within a region or state. The problem is when I set the OrgID on the scatter plot and apply it to just that org, logically the plot only contains that one org. 

 

Can this be done showing the two different views or is the scatter plot a piece that need to be coded in the portal just like we’ve done with the OrgID so when the user pulls up their org, their region shows with all orgs?

 

I’ve attached a package workbook with dummy data to show what I’m attempting.

Thank you

4 réponses
  1. 7 juil. 2025, 09:27

    Have a parameter for the user to choose between state or region.

    Have a calculation on the source sheet to replace your current State pill on the bar chart, along the lines of:

    CASE [Geography Choice]

    WHEN "State" THEN [State]

    WHEN "Region" THEN [Region]

    END

    Use that in your Filter Action

0/9000