Need help in formula.. OR combination

VBABEGINER

Well-known Member
Joined
Jun 15, 2011
Messages
1,232
Current Formula is -
Code:
=IF(OR(ISBLANK($AJ2)=TRUE,$AJ2="Issued from History"),"Complete",
IF(AO2="Process Support","Closed","Closed"))

here problem is, when im selecting "process support" in col AO all my answers are not shown as "Closed" because, as per the 1st OR condition if col AJ finds "blank" or "Issued from history" my answer shown as "Complete".

Can anyone help me in set this logic..
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Hey,

So if AO2 is "Process Support" you want to output "Closed", otherwise if either AJ2 is blank or "Issued from History" you want to see "Complete"? If so try this:

=IF(AO2="Process Support","Closed",IF(OR(ISBLANK($AJ2),$AJ2="Issued from History"),"Complete","Placeholder"))

I put in a placeholder as I am unsure what value you want to see if the OR condition is FALSE and AO2 is not equal to "Process Support".
 
Upvote 0

Forum statistics

Threads
1,214,614
Messages
6,120,519
Members
448,968
Latest member
Ajax40

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