Forum Discussion
Anonymous
5 years agoNot applicable
Using an 'IN' function to make a custom column
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. ...
- 5 years ago
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
BA_Pete
5 years agoSuper User
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