Forum Discussion
Scott Cackett
Dec 11, 2017Copper Contributor
Excel Formula help needed
Hi everyone,
I am trying to create a formula to help me increase/decrease insulin levels to help treat my diabetes.
Hopefully this makes sense. I need a formula to do the below:
If a number...
Haytham Amairah
Dec 11, 2017Silver Contributor
Scott,
What you need is something like this:
=IF(AND(A1>=-2,A1<=2),"No Change", IF(AND(A1<-2,A1>=-4),"-0.1", IF(AND(A1<-4,A1>=-6),"-0.2", IF(AND(A1>2,A1<=4),"+0.1", IF(AND(A1>4,A1<=6),"+0.2", IF(OR(A1>6,A1<-6),"Review"))))))
Scott Cackett
Dec 11, 2017Copper Contributor
thanks, looks like it's working perfectly!!