Reputation: 21
How to convert boolean True or False to "Yes" or "No" in Google Sheets?
=REGEXMATCH(A1;"word")
Upvotes: 2
Views: 1345
Reputation: 1
for a single cell:
=IF(A1="word"; "yes"; "no")
for a range of cells:
=ARRAYFORMULA(IF(A1:A10="word"; "yes"; "no"))
Upvotes: 1