Hey Guys,
I want to select a category based on if a key word in present in the description of a transaction. I added a key word column to the category table. I am trying to use this expression but it does not work. If I change the expression to a LIST it lists all the categories.
What am I missing?Thanks
ANY(SELECT(Categories[Category],CONTAINS([Description],[Key Word])))
Solved! Go to Solution.
Ah, try this:
ANY(
SELECT(
Categories[Category],
AND(
ISNOTBLANK([Key Word]),
CONTAINS([_THISROW].[Description],[Key Word])
)
)
)
User | Count |
---|---|
20 | |
16 | |
4 | |
3 | |
2 |