Forum Discussion
sbenzaquen
Helper I
4 years agoFind text in a column from another table
Hi experts, I need help with something I'm working on. I want to search in the "Notes" column from the "Time Spent" table if it contains any of the "Issue Keys" of the "Issue Key" table. If so, I'd...
tamerj1
Community Champion
4 years agoHi sbenzaquen
please use
Issue Key =
MAXX (
FILTER (
VALUES ( 'Issue Key'[Issue Key] ),
CONTAINSSTRING ( 'Time Spen'[Notes], 'Issue Key'[Issue Key] )
),
'Issue Key'[Issue Key]
)