Jorge Solá 6/10/2019 9:47:02 AM If you want to have the ability to specify several keywords (let's say 3), you could have 3 Formula-Text columns ([Keyword 1], ]Keyword 2], [Keyword 3]) that will respectively extract the 1st, the 2nd & the 3rd word in the [Keyword] column (through Left() & NotLeft() functions). Then change the above filter formula to something like: If(not IsNull([Lookup Keyword]), Contains([Description], [Lookup Keyword 1]) or Contains([Description], [Lookup Keyword 2]) or Contains([Description], [Lookup Keyword 3]), true)
|