Let’s say I want to keep track of the stock of some fruits, including some red and green apples,
Fruits,Number
Apples-Green,5
Apples-Red,6
Bananas,7
Apples-Green,8
etc.
And I would like to count all apples, green and red. So I added a column saying “IF(A2=“Apples*”,A3,0)” -like I would do in Excel, using asterisk to represent any characters following the string “Apples”- and sum up that column. But the whole column was 0. Why?