I can't seem to get the hang of formula differences between SS and Excel. Here's what I need:
I am trying to populate a status column based on a numerical value in another column. If the value is 197 or higher, I want a value of Yes returned. If lower, a value of No should be returned. Here is what has not worked for me:
=IF(AND([M1 through M8 Score]@row>=197, [M1 through M8 Score]@row<=196), "Yes", "No"). This returns a Status value of No regardless of the score value for every row.