Forum Discussion

LyonsBI_BRL's avatar
LyonsBI_BRL
Helper III
4 years ago
Solved

Using Multiple Measures in a Visual on Y axis

I've got kind of a challenging problem here on creating two visuals. One is for age and one is for subject. Where within the data model I have two columns where they are coma delimited.  In or...
  • LyonsBI_BRL's avatar
    LyonsBI_BRL
    4 years ago

    amitchandak Thanks for the suggestion. However after looking more into this, I figured out what I was missing here in order to get this to work

     

    Below is what I did.

    Step 1 - Create Slicer Table

    Age Slicer = 
    {
        "0 – 5 years old",
        "6 – 8 years old",
        "9 – 11 years old",
        "12 – 14 years old",
        "15 – 18 years old",
        "Students over 18 years old"
    }

    Step 2 Create a Meaurse that I can use to move back and forth

    Age Selection = SELECTEDVALUE('Age Slicer'[Value])

    Step 3 - Create Measure that uses the SWITCH function in order to sort each measure.

    Age Selected Values = 
        SWITCH(
            TRUE(),
        [Age Selection] = "0 – 5 years old", [Age 0 – 5 years old],
        [Age Selection] = "6 – 8 years old", [Age 6 - 8 yrs old],
        [Age Selection] = "9 – 11 years old", [Age 9 – 11 yrs old],
        [Age Selection] = "12 – 14 years old", [Age 12 - 14 yr olds],
        [Age Selection] = "15 – 18 years old", [Age 15 - 18 yrs old],
        [Age Selection] = "Students over 18 years old", [Age over 18],
        "Other Age Groups"
        )

    Which gives me the result I'm looking for 🙂