Forum Discussion
Laeti
6 years agoFrequent Visitor
new column to exclude rows containing or equal value
Hello, I have 3 columns with different information and I would like to exclude some values and I am stuck as I have too many different arguments. For exemple I would like to exclude: - all rows...
az38
Community Champion
6 years agoHi Laeti
whats your desired result?
you can try a column like
Column =
IF(
RIGHT([column A], 4) = "T000" || [column B] = "US" || [column C] = "tube",
FALSE(),
TRUE()
)
then filter out in visual rows with Column = FALSE
Laeti
6 years agoFrequent Visitor
Thanks.
It works perfectly well for the first 2 columns but the column C is not = but it is contains tube. How can I mnage that third one? Thanks