Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
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 1 | Step2 | Step3 |
| Introduction | Review | Introduction |
| Discussion | Test | |
| Test | ||
| Review | ||
Thanks,
Jennifer
Solved! Go to Solution.
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.
Best Regards,
Angelia
Great thanks for your help
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.
Best Regards,
Angelia
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 43 | |
| 35 | |
| 33 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 64 | |
| 59 | |
| 31 | |
| 27 | |
| 25 |