I would like to create an OR statement that has multiple conditions. These would be:
A1="R"
A1="XR"
A1="HR"
A1="H/R"
There would actually be even more conditions.
I was able to do this by listing each individual equation (as in OR(A1="R",A1="XR",A1="HR",A1="H/R"), but I think it must be possible to condense this a bit, and just mention A1 once.

Thanks for any help!