Working on metadata for a music library. I'm having problems with an IF formula, there are five possible outcomes for the cell named "Tempo":
Unspecified
Very Fast (131+BPM)
Fast (111-130BPM)
Medium (90-110 BPM)
Slow (0-89 BPM)
In my formula, S2 is the BPM value of each song
=IF(S2<90,"Slow (0-90 BPM)",IF(S2>130,"Very Fast (131-130 BPM)",IF(AND(S2<111,S2>89), "MEDIUM (90-110 BPM)", IF(AND(S2<131,S2>110),"Fast (111-130 BPM)", "Unspecified”))))
I'm a a total newbie, thanks in advance for any help.
Unspecified
Very Fast (131+BPM)
Fast (111-130BPM)
Medium (90-110 BPM)
Slow (0-89 BPM)
In my formula, S2 is the BPM value of each song
=IF(S2<90,"Slow (0-90 BPM)",IF(S2>130,"Very Fast (131-130 BPM)",IF(AND(S2<111,S2>89), "MEDIUM (90-110 BPM)", IF(AND(S2<131,S2>110),"Fast (111-130 BPM)", "Unspecified”))))
I'm a a total newbie, thanks in advance for any help.