Go back
Excel formula help

Excel formula help

General

Vote Up
Vote Down

For the geeks I need a formula to find out the following

- time less than 0, ccnoob claim timeout
- time 0 to 24, ccnoob move
- time greater than 24, ccnoob chill

I can get it working for two conditions, but with the 3 i need a nested if statement. Anyone come up with a solution?

Vote Up
Vote Down

Originally posted by CCNoob
For the geeks I need a formula to find out the following

- time less than 0, ccnoob claim timeout
- time 0 to 24, ccnoob move
- time greater than 24, ccnoob chill

I can get it working for two conditions, but with the 3 i need a nested if statement. Anyone come up with a solution?
Then why not use a nested condition?

Vote Up
Vote Down

Originally posted by FabianFnas
Then why not use a nested condition?
I was hoping you would provide it.

Vote Up
Vote Down

Originally posted by CCNoob
I was hoping you would provide it.
Nothing in RHP comes for free! 😉

Not even a picture or event history! 😏

Vote Up
Vote Down

=IF(I10<24,"Move",IF(I10>24,Chill,IF(I10<0,"timeout","chill"😉))

This attempt returns, move for -3 when it should return timeout.

Vote Up
Vote Down

Originally posted by mikelom
Nothing in RHP comes for free! 😉

Not even a picture or event history! 😏
I will give you 1 virgin from my share of 17 virgins in paradise if you provide the correct solution.

3 edits
Vote Up
Vote Down

1 edit
Vote Up
Vote Down

=IF(I10<0, "timeout", IF(I10>24, "chill", "move" ))

Vote Up
Vote Down

Originally posted by PBE6
=IF(I10<0, "timeout", IF(I10>24, "chill", "move" ))
Thanks that's great!!