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!View all the Fabric Data Days sessions on demand. View schedule
Dear Community
I am pulling facebook lead ads into PQ.
There is some coincidences where people have emojies in there name.
I am using: Text.Select([First Name],{"a".."z","A".."Z","0".."9"," "}
When I am using this formula it also removes the æ ø å from people names in Denmark.
How can I keep Æ Ø Å æ ø å?
Anders 🧚🏽♀️
Hans Sjøtlov
Solved! Go to Solution.
Hi Anders,
The quickest solution is probably to add in all the characters you want to keep to your selectChars argument
(everything in the curly braces). To keep the characters you've mentioned, your Text.Select line would look like:
Text.Select([Column1],{"a".."z","A".."Z","0".."9"," ", "Æ", "Ø", "Å", "æ", "ø", "å"})
Or you can try by referencing to this Unicode characters table with
Text.Select([First Name],{"a".."z","A".."Z","0".."9"," ", "À".."ÿ"})
Hi Anders,
The quickest solution is probably to add in all the characters you want to keep to your selectChars argument
(everything in the curly braces). To keep the characters you've mentioned, your Text.Select line would look like:
Text.Select([Column1],{"a".."z","A".."Z","0".."9"," ", "Æ", "Ø", "Å", "æ", "ø", "å"})
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 10 | |
| 9 | |
| 6 | |
| 5 | |
| 3 |