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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi
Is there a possibility to filter out all values that beginn with a letter and not an number.
The measure should should than show only values who beginn with a letter.
Regards
Heinrich
Solved! Go to Solution.
Hi, @Heinrich
Based on your description, I have created some measures to achieve the effect you are looking for. Following picture shows the effect of the display.
Measure:
Filtered Values =
VAR _values =
SELECTEDVALUE ( 'Table'[values] )
VAR _numbers = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9","!","@","#"}
//You can add more characters that don't start with a letter or only characters that start with a letter, how to modify the logic of IF
VAR _left1 =
LEFT ( _values, 1 )
VAR _isInNumber =
IF ( NOT ISBLANK ( _values ) && _left1 IN _numbers, BLANK (), _values )
RETURN
_isInNumber
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
Hi @Anonymous
Thank you very much.
Have a great weekend.
Regards
Heinrich
Hi, @Heinrich
Based on your description, I have created some measures to achieve the effect you are looking for. Following picture shows the effect of the display.
Measure:
Filtered Values =
VAR _values =
SELECTEDVALUE ( 'Table'[values] )
VAR _numbers = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9","!","@","#"}
//You can add more characters that don't start with a letter or only characters that start with a letter, how to modify the logic of IF
VAR _left1 =
LEFT ( _values, 1 )
VAR _isInNumber =
IF ( NOT ISBLANK ( _values ) && _left1 IN _numbers, BLANK (), _values )
RETURN
_isInNumber
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.