%
or _
options. For example:
=query(A2:A,"Select A where A like 'A%'")
As well as MATCH to utilise REGEX:
=query(A1:B, "Select * where B matches 'India|Russia' ")
Rather than an OR statement:
=query(A1:B, "Select * where B = 'India' or B = 'Russia'")
Using REGEX also allows you to match a substring anywhere in a string:
=query(A1:B, "Select * where B matches '.*India.*' ")
Although I was still stuck with my initial problem (might need to explore the use of an IF statement), however I did pick up a few more possibilities.
Sheets Tip #312: The Missing Link π by Ben Collins
Ben, I really like the spicy solution regarding hyperlinks:
I had never thought about the fact that you can reference a cell and what possibilities that may allow.
It had me wondering about linking to a cell in a table via a drop-down menu / wild card search using the MATCH function to add a link to a table row: