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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
eeroso
Frequent Visitor

Map bubble size by selected value and nothing selected

AreaAge groupValue
New York0-301.1
New York30-606.2
New York60+20.1
New YorkAll ages6.1
Los Angeles 0-301.1
Los Angeles 30-60 4.2
Los Angeles 60+23.6
Los AngelesAll ages10.1

 

So I have similar table like that and Im supposed to show values on a map based on area. If nothing is selected in any filter, it is supposed to show "All ages" value on each bubble size and tooltip. If a age group filter is selected in other visualization, it is supposed to show corresponding age group value in bubble size/tooltip.

If I just put area as area and value as Size in map, it works for the age group filters, but if nothing is selected it shows the chosen aggregate over all age groups. Instead I want only to show "all ages" value when nothing is selected. And no, All ages is not sum,average, or anything like that over those age groups - its based on things like population and other stuff which is not provided by the data provider.

1 ACCEPTED SOLUTION
eeroso
Frequent Visitor

Looks like I managed to solve it by myself

IF (
SELECTEDVALUE('Table2'[Age Group]) = BLANK(),
SUM('Table1'[All ages value]),
SUM('Table1'[Value])
 
)
 
Table2 is table with same agegroups in other visual (which is the initial filtering visual on click)
"All ages value" is calculated column which only contains all ages values (all other age groups are 0)

View solution in original post

1 REPLY 1
eeroso
Frequent Visitor

Looks like I managed to solve it by myself

IF (
SELECTEDVALUE('Table2'[Age Group]) = BLANK(),
SUM('Table1'[All ages value]),
SUM('Table1'[Value])
 
)
 
Table2 is table with same agegroups in other visual (which is the initial filtering visual on click)
"All ages value" is calculated column which only contains all ages values (all other age groups are 0)

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

March2025 Carousel

Fabric Community Update - March 2025

Find out what's new and trending in the Fabric community.