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
Hi! I am trying to split a row based on the variable in another column. I have a dataset that mixes file paths with file names. I only want to split the item in the column "File Path" only when the "Item Type" equals "File"). I think I need an if-statement and Text.Split but I am new to Power Query and M.
The green table indicates my starting point and the orange table indicates where I want to arrive.
Solved! Go to Solution.
You can add two custom columns with these expressions to get that result.
if [Item Type] = "File" then Text.BeforeDelimiter([File Path], "\", {0, RelativePosition.FromEnd}) else [File Path]
if [Item Type] = "File" then Text.AfterDelimiter([File Path], "\", {0, RelativePosition.FromEnd}) else null
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Hi @elmayimbe,
Are you able to achieve your requirement using @mahoneypat answer?
Or you need a sample power bi file with the solution?
You can add two custom columns with these expressions to get that result.
if [Item Type] = "File" then Text.BeforeDelimiter([File Path], "\", {0, RelativePosition.FromEnd}) else [File Path]
if [Item Type] = "File" then Text.AfterDelimiter([File Path], "\", {0, RelativePosition.FromEnd}) else null
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
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 |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 10 | |
| 8 | |
| 7 | |
| 7 | |
| 5 |