Nested IF Help

statbid

New Member
Joined
Mar 28, 2009
Messages
8
Hey everyone, I am trying to get the following Nested IF Function to work, but my brain has a hard time putting the logic together.

IF(D35<500,0,(IF((E35/F35)-1)<-.50,-.50,IF((E35/F35)-1)>.50,.50,(E35/F35)-1))

I am basically just looking to set an upper and lower bound if there are more than 500 clicks in a given cell.

Any help is appreciated.

Thank you,

Shilo
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Your
IF(D35<500,0,(IF((E35/F35)-1)<-.50,-.50,IF((E35/F35)-1)>.50,.50,(E35/F35)-1))
slight modification...
=IF(D35<500,0,IF((E35/F35)-1<-0.5,-0.5,IF((E35/F35)-1>0.5,0.5,(E35/F35)-1)))
pretty much what you had though. What seems to be the problem with what you have?
 
Upvote 0
Thank you FDibbins. I know it was sort of a lame post, but I was playing around with it for about an hour and finally my eyes crossed and I had to reach out for help. I felt I was moving in the right direction, just was having problems getting the brackets in the right place.

Thank you,

Shilo
 
Upvote 0
Sorry, yeah, that's correct. Your "slight modification" did the trick. Thank you very much for your help.

Shilo
 
Upvote 0

Forum statistics

Threads
1,215,343
Messages
6,124,400
Members
449,156
Latest member
LSchleppi

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top