Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Return Multiple values from a string

I have a list of job descriptions scraped from job boards that are varible strings  I also have a list of job skills  What I would like to do is create a column that comtains the words in the skill...
  • v-angzheng-msft's avatar
    4 years ago

    Hi, Anonymous 

    Try this:

    Measure = 
    COUNTROWS(
        CALCULATETABLE(
            'Table',
            CONTAINSSTRING( 'Table'[JD], MAX( 'Skills Table'[Skill] ) )
        )
    )

    Result:

    Please refer to the attachment below for details.

    Hope this helps.

     

     

    Best Regards,
    Community Support Team _ Zeon Zheng


    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.