Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hello everyone.
I would like help extracting the houses adresses from a "address column", and i need just the text at the start till the "," character.
Ex:
Travessa john charles de mello, 457 A - neighborhood ABC - City xyz, Sao paulo---> I need the part of the text till the first "comma", which is "Travessa john charles de mello".
I never had the need to do such a thing in power bi, and im somewhat lost here, because theres a lot of different adresses and i would like to know if theres a way to use the FIRST COMMA as a POINT where we can count the characters till there and then maybe use that count in a LEFT dax function.
Any help is welcome, it can be dax or power query.
Solved! Go to Solution.
Hi @bolabuga
Sure, you can use FIND:
FIND(",", Table1[Col],1,0)
to get the position of the first comma and then use that (-1) with a LEFT( )
Please mark the question solved when done and consider giving kudos if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Hi, @bolabuga , Power BI toolkit consists of another powerful lightsaber, Power Query, which does the trick.
It's power is beyond imagination when you have a firm grasp of functions in M language. I bet you'll love it.
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
Hi, @bolabuga , Power BI toolkit consists of another powerful lightsaber, Power Query, which does the trick.
It's power is beyond imagination when you have a firm grasp of functions in M language. I bet you'll love it.
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
Hi @bolabuga
Sure, you can use FIND:
FIND(",", Table1[Col],1,0)
to get the position of the first comma and then use that (-1) with a LEFT( )
Please mark the question solved when done and consider giving kudos if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
107 | |
68 | |
48 | |
44 | |
44 |