Go back
Excel formula help

Excel formula help

General

C

Joined
14 May 09
Moves
974
Clock
08 Oct 09
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?

F

Joined
11 Nov 05
Moves
43938
Clock
08 Oct 09
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?

C

Joined
14 May 09
Moves
974
Clock
08 Oct 09
Vote Up
Vote Down

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

m
Ajarn

Wat?

Joined
16 Aug 05
Moves
76863
Clock
08 Oct 09
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! 😏

C

Joined
14 May 09
Moves
974
Clock
08 Oct 09
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.

C

Joined
14 May 09
Moves
974
Clock
08 Oct 09
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.

F

Joined
11 Nov 05
Moves
43938
Clock
08 Oct 09
3 edits
Vote Up
Vote Down

P
Bananarama

False berry

Joined
14 Feb 04
Moves
28719
Clock
08 Oct 09
1 edit
Vote Up
Vote Down

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

C

Joined
14 May 09
Moves
974
Clock
08 Oct 09
Vote Up
Vote Down

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

Cookies help us deliver our Services. By using our Services or clicking I agree, you agree to our use of cookies. Learn More.