We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hello,
Is it somehow possible to do the following in Power Bi Query:
When I have a project, with different people, can I extract it to multiple lines?
So for example:
| Names | Project | Date | Hours |
| David, Richard | Project X | 14-jul | 16 |
When I work with these names on an x-axis I will see 'David, Richard' as one name, but I want one line
of 8 hours for David and one line of 8 hours for Richard.
Names are always comma separated.
Is it possible to make two rows from this when I load the Excel file in Power BI?
Solved! Go to Solution.
Hi @IAM ,
See below outcome:
Simple 3 transformation steps:
1. Add a custom column and add formula below to split the name by ", " and return as a list:
Text.Split([Names],", ")
2. Expand the list to new rows
3. Add a custom column to split the hour equally with formula below:
[Hours]/List.Count(Text.Split([Names],", "))
Regards
KT
Woww thanks!!!
Hi @IAM ,
See below outcome:
Simple 3 transformation steps:
1. Add a custom column and add formula below to split the name by ", " and return as a list:
Text.Split([Names],", ")
2. Expand the list to new rows
3. Add a custom column to split the hour equally with formula below:
[Hours]/List.Count(Text.Split([Names],", "))
Regards
KT
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.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 6 | |
| 4 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 11 | |
| 10 | |
| 7 | |
| 7 | |
| 6 |