IF statements (Nested) ??

Kevalson

New Member
Joined
Apr 16, 2002
Messages
22
Office Version
  1. 2013
Platform
  1. Windows
I have the following formula located in K31.

=IF(L31<>"TECH","In", IF(V31>=71,"Out","In"))

The manual variables are located in L and V.

Here's the variable possibilities for L:

TECH or Nothing. (Empty cell)
TMOAM
TMOOT
TMPPA


Here's the variable possibilities for V:
=>71


If V31 => 71, then check L.
If L = either TECH or Empty cell, then K = "Out"
If L = any of these (TMOAM,TMOOT,TMPPA), then K = "In"

If V31 equals 70 or below, then K = "In".

I feel like my formula gets close, but no joy.
Also, macro's are disabled, as well as anything VBA.

Thoughts?
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Hi,

If L can Only be one of these, and nothing else, (TECH, empty, TMOAM, TMOOT, TMPPA).

Either one of these should work:


Book1
KLV
31Out71
32Out
Sheet568
Cell Formulas
RangeFormula
K31=IF(V31<71,"In",IF(OR(L31={"","Tech"}),"Out","In"))
K32=IF(V31>70,IF(OR(L31={"","Tech"}),"Out","In"),"In")
 
Upvote 0

Forum statistics

Threads
1,223,231
Messages
6,170,884
Members
452,364
Latest member
springate

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