Forum Discussion

reevesgetsaround's avatar
reevesgetsaround
Brass Contributor
Aug 31, 2023
Solved

Alteration to TEXTJOIN IF formula

Hi all   I have a formula in G2 of the attached sample doc. I'm trying to develop it so that it will only return results where the Risk number is greater than, let's say 3. But also, so that it wil...
  • SergeiBaklan's avatar
    SergeiBaklan
    Aug 31, 2023

    reevesgetsaround 

    In addition, you may return all results at once

    =BYROW(
        $F$2:$F$5,
        LAMBDA(v,
            TEXTJOIN(", ", ,
                UNIQUE( FILTER( $B$2:$B$13,
                        ($A$2:$A$13 = v) *
                        ($C$2:$C$13 > 3)
                ) )
            )
        )
    )

Resources