Forum Discussion
Anonymous
6 years agoNot applicable
How to extract first value from Path function?
I'm using path and I'm getting value "123 | 456 | 678" to Path Column. I would like to create new column, which included first value of Path which is "123". Is this possible? https://docs.microso...
- Anonymous6 years agoI solved with PATHITEM(pathcolumn;1)
az38
6 years agoCommunity Champion
hi Anonymous
you've got two option:
1. split by delimiter in the Power Query Editor mode
2. create a calculated column
Column = left([Path Column];(find("|";[Path Column])-1))do not hesitate to give a kudo to useful posts and mark solutions as solution
Anonymous
6 years agoNot applicable
I solved with PATHITEM(pathcolumn;1)