If logical test

bmarroush

Board Regular
Joined
Feb 2, 2016
Messages
102
Could you please help over this formula where I need to have separate logical test where if two certain cells contains special text like medium or high an x should be replaced in other certain cell

formula is like but not working

=IF(AND(H128="High",G128="Medium",H128="Medium",G128="High")=TRUE,"X"," ")
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Not exactly sure of your logic requirements, but try

=IF(OR(H128="High",G128="Medium",H128="Medium",G128="High"),"X"," ")
 
Upvote 0
formula is like but not working
=IF(AND(H128="High",G128="Medium",H128="Medium",G128="High")=TRUE,"X"," ")

And yet another possible interpretation, absent a complete and accurate explanation of your intent:

=IF(OR(AND(H128="High",G128="Medium"),AND(H128="Medium",G128="High")), "X", "")

That returns "X" only if "high" in H128 is paired with "medium" in G128 or vice versa.

Note the use of the null string ("") instead of a space (" "). The null string is preferred because it allows for simple dependent formulas like IF(K128="",....), which probably works as intended whether K128 is empty or it contains a formula that returns the null string.
 
Upvote 0

Forum statistics

Threads
1,225,743
Messages
6,186,777
Members
453,370
Latest member
juliewar

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