Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi folks,
I have 2 tables, table 1 'Words' contains a list of Terms in the Term column that are deemed non inclusive:
Table 2 'WorkItems' contains a list of items that may have this term used in the Title column:
I want to count how many times a word from my Term column appears in the Title column - how would I do so?
Solved! Go to Solution.
@Anonymous,
Try this calculated column in Table1:
Term Count = 
VAR vTerm = Table1[Term]
VAR vResult =
    COUNTROWS ( FILTER ( Table2, CONTAINSSTRING ( Table2[Title], vTerm ) ) )
RETURN
    vResult
Proud to be a Super User!
@Anonymous,
Try this calculated column in Table1:
Term Count = 
VAR vTerm = Table1[Term]
VAR vResult =
    COUNTROWS ( FILTER ( Table2, CONTAINSSTRING ( Table2[Title], vTerm ) ) )
RETURN
    vResult
Proud to be a Super User!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.