Forum Discussion
haniizz
Helper II
2 years agoHelp with Visualization of values
Hello community I have measures values as following Poverty = 45% Disease = 62% unemployment = 33% I need to visualize this in Stacked Column Chart how can I do this , knowing these v...
- 2 years ago
hi haniizz
Step1: Create a Category table, and sort Category name by sort column(Column tools > Sort By Column).
Step2 :
Create this measure
Measure By Category =VAR _SelCategory = SELECTEDVALUE(Categody[Sort])RETURN IF(_SelCategory = 1, [POVERTY REDUCTION], IF(_SelCategory = 2, [DESEASE REDUCTION], [UNEMPLOYMENT REDUCTION]))Step3 : In a Stacked Column chart, drop Category on X-Axis and New Measure on Y-Axis.Hope this helps.
haniizz
Helper II
2 years agoDear Talespin
I have an issue when I add more than 3 elements
when I'm trying to add "Education" to the other three elements I get blank column althought all of the measure is correct
talespin
Solution Sage
2 years agohi haniizz
- You need to add "Education" to Step1 table.
- You also need to modify this measure, add "Education" to IF and call your measure for education.
Measure By Category =
VAR _SelCategory = SELECTEDVALUE(Categody[Sort])
RETURN IF(_SelCategory = 1, [POVERTY REDUCTION], IF(_SelCategory = 2, [DESEASE REDUCTION], [UNEMPLOYMENT REDUCTION]))
- haniizz2 years ago
Helper II
thank you
issue is solved