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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Creating Tornado Chart

Hi,

 

I am trying to create a tornado chart to show a number of different steps that are stored in the same column.  The Phases column contains the following 4 values - introduction, discussion, test and review

 

I want to display gender with 3 different bars in the tornado chart.  The steps are made up of multiple items from the phases columns like the following table.

 

Can anyone advise on how I can best create one column that will show step 1, step2 and step3 which are made up of items from the Phase column so that I can use this in the tornado chart?

 

Step 1Step2Step3
IntroductionReviewIntroduction
Discussion Test
Test  
Review  
   

 

Thanks,

Jennifer

2 ACCEPTED SOLUTIONS
v-huizhn-msft
Employee
Employee

Hi @Anonymous,

Based on my understanding, you want to combine the three steps into one column, right? If it is, you just create a new table by clicking "New Table" under Modeling on Home page, type the following formula.

Table =
FILTER (
    UNION (
        SELECTCOLUMNS ( Table1, "phases", Table1[Step1] ),
        SELECTCOLUMNS ( Table1, "phases", Table1[Step2] ),
        SELECTCOLUMNS ( Table1, "phases", Table1[Step3] )
    ),
    [phases] <> BLANK ()
)


Table1 is the name of your sample table, please review the expected result as follows.

1.PNG

Best Regards,
Angelia

View solution in original post

Anonymous
Not applicable

Great thanks for your help

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Great thanks for your help

v-huizhn-msft
Employee
Employee

Hi @Anonymous,

Based on my understanding, you want to combine the three steps into one column, right? If it is, you just create a new table by clicking "New Table" under Modeling on Home page, type the following formula.

Table =
FILTER (
    UNION (
        SELECTCOLUMNS ( Table1, "phases", Table1[Step1] ),
        SELECTCOLUMNS ( Table1, "phases", Table1[Step2] ),
        SELECTCOLUMNS ( Table1, "phases", Table1[Step3] )
    ),
    [phases] <> BLANK ()
)


Table1 is the name of your sample table, please review the expected result as follows.

1.PNG

Best Regards,
Angelia

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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