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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have a table with a NAME column that I want to know what rows in that table begin with either _ or -. An Example
NAME CONTAINS
-----------------------
HELLO FALSE
_Hello TRUE
BYE FALSE
-BYE FALSE
I have been trying to use a calculated column but I can't seem to get it to apply to each individual row.
Thanks in advance!
Michael
Solved! Go to Solution.
Hi, with Query Editor
Or With DAX a Calculated Column:
Column = IF(LEFT(Table1[NAME];1) IN {"-"; "_"};"TRUE";"FALSE")
Regards
Victor
In M you can use: https://docs.microsoft.com/en-us/powerquery-m/text-startswith
In DAX if you need only one character then
CONTAINS = if(left([Name],1) in {"-","_"},"TRUE","FALSE")
In M you can use: https://docs.microsoft.com/en-us/powerquery-m/text-startswith
In DAX if you need only one character then
CONTAINS = if(left([Name],1) in {"-","_"},"TRUE","FALSE")
Hi, with Query Editor
Or With DAX a Calculated Column:
Column = IF(LEFT(Table1[NAME];1) IN {"-"; "_"};"TRUE";"FALSE")
Regards
Victor
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 |
|---|---|
| 101 | |
| 76 | |
| 56 | |
| 51 | |
| 46 |