I am trying to build an If/Then formula that contains multiple logical arguments. Essentially, I want the formula to return a value of 4,3,or 1 based on which cell has an X in it. Here is the formula that I have:

=(IF(K53="X","4",""),OR,IF(G53="X","3",""),OR,IF(B53="X","1",""))

This formula returns a #Value!

Any thoughts on what I have done incorrectly?