Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
I have a column with text and numeric inputs. I want to add another column which returns the first letter if it starts with a letter or to return null (or 0) when it does not start with a letter. For example:
Column | Desired Column |
A6T4 | A |
4500 | null |
How can I achieve this?
Solved! Go to Solution.
@Anonymous , Sorry, Try like
Text.Select(Text.Start([Column],1), {"A".."Z"})
or
Text.Select(Text.Start([Column],1), {"A".."Z", "a".."z"})
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
126 | |
113 | |
72 | |
65 | |
46 |