Quick one here!
https://docs.google.com/spreadsheets/d/1kJI0TwIIbEVXBmvPx2WytDdqPu-ECgbeRovjAIcqvds/edit?usp=sharing
I am trying to get this sheet to take values from the K and Q column to represent an outcome in the R column.
So for example, if the target (Column K) is 'E'. I want it to use the formula
But if the target is 'S' I want it to use the formula
and so on.
Can this be done?
Cheers
https://docs.google.com/spreadsheets/d/1kJI0TwIIbEVXBmvPx2WytDdqPu-ECgbeRovjAIcqvds/edit?usp=sharing
I am trying to get this sheet to take values from the K and Q column to represent an outcome in the R column.
So for example, if the target (Column K) is 'E'. I want it to use the formula
Code:
=IF(Q4>=3,"Rapid",IF(Q4>=2.8,"Good","Slow"))
Code:
=IF(Q4>=2.8,"Rapid",IF(Q4>=2.6,"Good","Slow"))
Can this be done?
Cheers