We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
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!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 54 | |
| 37 | |
| 32 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 64 | |
| 63 | |
| 37 | |
| 34 | |
| 22 |