Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have table that is read in from an SQL server where I do some calculation and renaming in Power Query and then I need to add additional rows to the table so that things will be calculated correctly. The data is from an appointment calendar for our staff, in our application if you schedule a meeting for multiple people it saves as one record with the primary user name and then has fields for each additional person inlcuded. I need to have a separate row/record for each person.
For Example, I need this:
Meeting Date | Time | Duration | Scheduler | Additional Person 1 | Additional Person 2 |
1/1/2022 | 10:00am | 30min | Mike | Frank | Sue |
1/2/2022 | 11:00 AM | 60min | Jay | George | |
To Become This:
Meeting Date | Time | Duration | Scheduler |
1/1/2022 | 10:00am | 30min | Mike |
1/1/2022 | 10:00am | 30min | Frank |
1/1/2022 | 10:00am | 30min | Sue |
1/2/2022 | 11:00 AM | 60min | Jay |
1/2/2022 | 11:00 AM | 60min | George |
I found this example below which makes sense, but I'm not sure how it would get incorporated into the exsiting process. If I go to the advanced editor in power querry I don't know how to weave the code below in with what is already there. Thanks for any help.
https://community.powerbi.com/t5/Desktop/Conditionally-Insert-Row/m-p/621076
Solved! Go to Solution.
select the first 3 columns and unpivot other columns
filter column value and remove attribute column
Proud to be a Super User!
Thanks for your help.
you are welcome
Proud to be a Super User!
select the first 3 columns and unpivot other columns
filter column value and remove attribute column
Proud to be a Super User!