Hey All,
Feel like I talk here more than I do to my own family lately! But hopefully my last question for at least a week 🙂
I have a collection, as shown below

I want to take only the RatingTitle when RatingScore is equal to "1" or "2" (or 1 or 2 - I am using a global choice if that changes anything"
At the moment I'm using the following, but get an "expected text value" error and don't understand why.
Filter(col_combined, RatingScore = "1" || RatingScore = "2").RatingTitle
I have also tried doing it the followign way, but promptly gave up when ChatGPT bullied me for it
If(
Or(
ThisItem.RatingScore = 1,
ThisItem.RatingScore = 2
),
ThisItem.RatingTitle,
)
Any advice or pointers is greatly appreciated, I feel like I'm being dense and missing something obvious here