Forum Discussion
sbenzaquen
4 years agoHelper I
Find 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...
sbenzaquen
4 years agoHelper I
Done - I have now 48 distinct "Project Keys" (and 9k Issue Keys)
tamerj1
4 years agoCommunity Champion
sbenzaquen
Great. Now connect bothe tables via Project Columns. Then use
Issue Key =
MAXX (
FILTER (
RELATEDTABLE ( 'Issue Key' ),
CONTAINSSTRING ( 'Time Spen'[Notes], 'Issue Key'[Issue Key] )
),
'Issue Key'[Issue Key]
)