I need to filter a table. Maybe with a Formula which would look kind of like this:
Filter = IF ( table[column] contains ("A" && "B") || ("A" && "C"), table[column] )
or maybe like this:
= Table.SelectRows(#"Added Custom",
each Text.Contains([column], "A" and "B") or Text.Contains([column], "A" and "C")
)
But none of these work.
Thank you for your help.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…