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

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
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,215,633
Messages
6,125,928
Members
449,274
Latest member
mrcsbenson

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