IFS and NOT BLANK

lemery

New Member
Joined
Jul 31, 2014
Messages
36
My formula is not working when fields are NOT BLANK.
I would like to have it say company append if Either column T or AM are NOT BLANK and A is 'highrisk' or 'mediumrisk' and I would like it to say unknown if both column T and AM are blank
1578495796038.png
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
It's been too long day for me to understand all the cell references (all the possible combinations of mixed rows + columns) in your current formula so I can't give you an exact answer, but looks like you could use the LEN(AM20&T20) in your formula to make it easier. If it's 0 then both cells are blank. Any other value means there's something in at least one of the cells. Is this enough or do you need to know which one is the empty one? And what should happen if there's a value in both cells?

Similarly maybe you could check if the word "risk" can be found in A20 or A7 using ISNUMBER(SEARCH("risk",A20&A7)). Replace the "risk" with more specific terms if needed. You have to check more than one word you can sum the values to get an OR or multiply them for AND (TRUE = 1 and FALSE = 0)
 
Upvote 0
Thank you for your help! The Risk part isn't the part drawing the error. I have pulled the string apart by each section and they all work except for when I include "*" When the formula finds text in T or AM, it breaks and says N/A.

The end goal is to have the formula bring back Company Append when it has HighRisk or MediumRiskin Column A and text in either T or AM. Currently, it's coming back as N/A so I can do a Find/Replace, but if I can figure out how to fix it, to save a step, it would be great!
 
Upvote 0
Does this work

=IF(AND(OR(T1<>"",AM1<>""),OR(A1="highrisk",A1="mediumrisk")),"Company Amend","unknown")
 
Upvote 0
The above assumes that is there is something in T or AM then A can only be highrisk or mediumrisk though
 
Upvote 0
try this

=IF(AND(ISBLANK(T20),ISBLANK(AM20)),"unknown",IF(AND((LEN(T20)+LEN(AM20))>0,OR(A20="highrisk",A20="mediumrisk")),"Company Append","X"))
 
Upvote 0
Does this work

=IF(AND(OR(T1<>"",AM1<>""),OR(A1="highrisk",A1="mediumrisk")),"Company Amend","unknown")
Does this work

=IF(AND(OR(T1<>"",AM1<>""),OR(A1="highrisk",A1="mediumrisk")),"Company Amend","unknown")

This part was very helpful: (T1<>"",AM1<>"") It worked for a different formula I was working on that only had one Valueif true. When I had to values (value if true and value if false:"Company Amend","unknown") it errs saying I have too few arguments. I think this is becaseu I'm using IFS instead of IF.
 
Upvote 0

Forum statistics

Threads
1,216,192
Messages
6,129,443
Members
449,509
Latest member
ajbooisen

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