Comparing text location between two columns to return value in third and fourth column

y3tter

Board Regular
Joined
Nov 11, 2012
Messages
147
In column A1:A14 the term "Red" is displayed in in only one cell and in column B1:B14 the word "Target" is displayed in only one cell. I want to return a value in in Cell C1 that says "Above" if "Red" is above any row position than "Target", and display "Below" in cell C1 if "Red" is on an equivalent or less row position as "Target". In Cell D1, I want to do something similar, if "Red" is on equivalent or greater row position as "Target", I would like cell D1 display "Above" and if "Red" is below the cell row of "Target", to display "Below" in cell D1. Is there an easy way to accomplish this?
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
How about
=IF(MATCH("red",A1:A14,0)< MATCH("target",B1:B14,0),"Above","below")
for C1
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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