Forum Discussion

singhv2's avatar
singhv2
Helper I
8 years ago
Solved

Search Values from a List(Query 1), in a Text string(Query 2A), and return those Values(Query 2B)

  Column/List A - Query1:   Key Information.1 ACCOUNTNBR: APPNAME: ANNVOLUME: ASTM: BILLTYPE: CICONTACT: CIPN: COMPONENT: CORE DIA: DELIVERY: DEPT: DEST: DI...
  • Anonymous's avatar
    Anonymous
    8 years ago

    Hi singhv2,

     

    You can write a calculated column on table 2 to check all keys and combine matched items.

     

    Result = 
    CONCATENATEX (
        FILTER (
            ALL ( 'Key Information' ),
            SEARCH ( [Key], [PO Line Description], 1, -1 ) > 0
        ),
        [Key],
        ","
    )
    

     

    Regards,

    Xiaoxin Sheng