Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
If you are using a Geo Analytics bubble layer, you place the sizing expression as a third measure after your lat and long ( or a second measure if using a combined field or geomakepoint) in the Location, Size section. You will also likely need to wrap that expression in the label section in a NUM() Function as such: Num(YOUREXPRESSION, '##.##%')
You will need an expression to calculate the percentage and then apply that as bubble size or color
I've created the expression but the bubble size is only showing 1 and I can't figure out how to show it as a percentage and apply a percentage as the bubble size. It just want's to show the bubble size as 1. (see attached).
Expression:
=Count(IF(vSlider<=[PATIENT.AGE] and vSlider2>=[PATIENT.AGE] and [LAB TEST.IS ABNORMAL]='1',LabTestKey))/(Count(IF(vSlider<=[PATIENT.AGE] and vSlider2>=[PATIENT.AGE],LabTestKey))
If you are using a Geo Analytics bubble layer, you place the sizing expression as a third measure after your lat and long ( or a second measure if using a combined field or geomakepoint) in the Location, Size section. You will also likely need to wrap that expression in the label section in a NUM() Function as such: Num(YOUREXPRESSION, '##.##%')
Perfect, this did the trick. Thank you!