Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

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.

 

Letters

Contains A
A, B, C1
A1
B, C0
A, B, C, D1
B0
C0
B, C0
  • 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

1 Reply

  • 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