The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
I need your help.
How to transform the following table:
Name | Course1 | Course 2 | Course 3|
A | YES | YES | NO |
B | NO | NO | YES |
C | NO | YES | NO |
In to :
Name | Course | mandatory
A | Course1 | YES
A | Course2 | YES
A | Course 3 | NO
B | Course 1 | NO
B | Course 2 | NO
B | Course 3 | YES
C | Course 1 | NO
C | Course2 | YES
C | Course 3 | NO
Or
Name | Course | mandatory
A | Course1 | YES
A | Course2 | YES
B | Course 3 | YES
C | Course2 | YES
Or
Name | Course |
A | Course1 |
A | Course2 |
B | Course 3 |
C | Course2 |
Many thanks for your help
Solved! Go to Solution.
You may right click Name column and select Unpivot Other Columns in Query Editor.
You may right click Name column and select Unpivot Other Columns in Query Editor.