Hello,
I'm struggling with the syntax for a formula-I've seen examples within the community and can't quite get them to work properly for me.
I would like to count the following:
Count values where the following statement is true:
column 1 =ABC, or, DEF, or, GHI AND where column 2 =123, or, 456
I've tried =COUNTIF([Column 1]@row, OR(@cell = "ABC", @cell = "DEF", @cell = "GHI")) AND([Column 2]@row, OR(@cell = "123", @cell = "456"))
I'm 100% confident that this is entirely wrong, but, I don't quite have the skills to match the formula functions with the words I'm using to describe my desired outcome. I'm wondering if I need to use a "CONTAINS" ? AND(CONTAINS("123"@cell))?
With thanks!