A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
? You would just insert a cell into your existing list, and add it there.
Or use a dynamic named range - define the name List, with the formula
=OFFSET(Sheet1!$AC$1,0,0,COUNTA(Sheet1!$AC:$AC),1)
(Choose any column that you are not using and start your list in row 1 of that column, and then add new entries at the bottom of the list. Then use\
=COUNTIF(D:D, List)
Or enter your comma-delimited list into a cell, and use
=COUNTIF(D:D,TEXTSPLIT(F5,,",")) 'to return a vertical array
=COUNTIF(D:D,TEXTSPLIT(F5,",")) 'to return a horizontal array
Where F5 has apple,banana,lemon