Without having access to the columns you're using, I can only say that one uses dplyr::filter() with unquoted columns. So your script may look something like:
Thank you! I shall read up on the reprex and make sure to use that next time I have a question.
(And I had been doing it without the quotes around 'description' - had tried that again at one point, although I didn't think it was correct, and then copied the wrong line.)
But yes - you were correct - for some reason, it wasn't using dplyr's filter.
Specifying dplyr::filter gives me back my columns. Not sure I've filtered how I meant to, but that's a different issue, and one I'll hopefully sort.