Do Google Sheets have a || operator like most of the languages?
I'm trying to use it inside a switch function to nest some values.
=SWITCH(G5;"BLACKOLIVES";"BLACK";"JABOTICABA";"BLACK";"MULLBERIES";"BLACK")
this is how I'm doing it now, I want to do it somewhat like whats next
=SWITCH(G5;"BLACKOLIVES"||"JABOTICABA"||"MULLBERIES";"BLACK")
but this statement returns an error and I can't find a ||-like operator in the documentation.
Does anyone have an idea how to solve this?