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.
Hello
I have a column called"ADDRESS"which has street,city,pincode.Now I want only street in another column.
ex: HOUSE 1234 Manchester Rd, Knoxville, TN,12345-6789 01234
Thanks in advance
Pavani
Solved! Go to Solution.
Hi @Anonymous
You can achieve it with PQ by following these steps:
1. Click right-click on your address column and choose the "split column" option << "by delimiter
2. Select comma as delimiter
3 . Modify split at
Result : (From here just change column names)
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.
Text.BeforeDelimiter(
[Adress], ","
,RelativePosition.FromStart)
Hi @Anonymous
You can achieve it with PQ by following these steps:
1. Click right-click on your address column and choose the "split column" option << "by delimiter
2. Select comma as delimiter
3 . Modify split at
Result : (From here just change column names)
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.