I'm trying to get a match in a range of text in Google Sheets basically I'm using this formula:
=IF(REGEXMATCH(H2:M2, "Hi"), "Yes", "No")
But I'm getting an error that is:
I'm trying to get a match in a range of text in Google Sheets basically I'm using this formula:
=IF(REGEXMATCH(H2:M2, "Hi"), "Yes", "No")
But I'm getting an error that is:
Copyright © 2021 Jogjafile Inc.

You are referencing an array in a function that is not designed to take arrays as input so you need to enable them.
Try:
Assuming E1:E2 is the list of values to check against A1:C1, you can try: