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.
I have column 'Letters,' and I would like to create column 'Contains A' by making a custom column. I think I should use an IF statement and some type of IN function, but I can't figure it out.
Letters | Contains A |
A, B, C | 1 |
A | 1 |
B, C | 0 |
A, B, C, D | 1 |
B | 0 |
C | 0 |
B, C | 0 |
Solved! Go to Solution.
Hi @Anonymous
Try something like this:
_containsA =
IF(
CONTAINSSTRING(yourTable[Letters], "A"),
1,
BLANK()
)
This will give you flag of the value 1 if [Letters] has A in it, or Blank/Null if not.
By the way, Intellisense is your friend here. If you're looking for something in DAX that helps you identify whether something CONTAINS something else, just start typing CONTAINS and Intellisense will show you if options exist:
Pete
Proud to be a Datanaut!
Hi @Anonymous
Try something like this:
_containsA =
IF(
CONTAINSSTRING(yourTable[Letters], "A"),
1,
BLANK()
)
This will give you flag of the value 1 if [Letters] has A in it, or Blank/Null if not.
By the way, Intellisense is your friend here. If you're looking for something in DAX that helps you identify whether something CONTAINS something else, just start typing CONTAINS and Intellisense will show you if options exist:
Pete
Proud to be a Datanaut!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.