Forum Discussion

Help_I_need_somebody's avatar
Help_I_need_somebody
Copper Contributor
Jul 13, 2021
Solved

finden und extrahieren

Beschriftung Tante Erna               NN TAnte Gisa            NN Onkel Herman   FB/BG! Onkel Max Jodi                 NN Maler GmbH   NN Hans            NN Gert FB/UB! ...
  • Lorenzo's avatar
    Jul 14, 2021

    Help_I_need_somebody 

     

    Based on the sample you provided. With range formatted as a Table (not mandatory) & Excel 365/Web

     

     

    One way in B2

    =LET(
        x,  {"NN","FB/UB","FB/BG"},
        f,  IFERROR(FIND(x,[@lettering]),FALSE),
        IF(SUM(f), XLOOKUP(TRUE, ISNUMBER(f), x), "")
    )

    Corresponding sample attached