How to filter column by a specific language
Hi, I’m currently working on a dataset that contains a “Page Title” column with rows in both English and other languages. I want to set up a filter to exclude all non-English titles. I use the following REGEX formula: CASE WHEN Page Title REGEXP '^[A-Za-z0-9 .,!?-]*$' THEN 'English' ELSE 'Other' END This formula helps…