Multi worksheet if cell not equal check next row

JRPark

New Member
Joined
Mar 5, 2021
Messages
3
Office Version
  1. 2013
Platform
  1. Windows
Here is what I am trying to do. I have a multi worksheet workbook. The first tab is the master and I want the other tabs to reference the master. So on tab 2, I want cell C4 to search for "Down Low" in cell B11 on the master tab, if it is "Down Low" then enter value from cell F11 into cell C4 on tab 2. If B11 on the master doesn't equal "Down Low" then move to cell B12, If B12 is 'Down Low' then enter the value of F12 into cell C4 on tab 2. I want this to repeat through out tab 2 so I only get the data from row B that has "Down Low" in it. Hope that makes sense.

1614974513215.png
 

Attachments

  • 1614973692554.png
    1614973692554.png
    27.8 KB · Views: 5

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
I'm confused.
We want to search what sheets for what value.
It seems as if you might want to search all sheets but then you say Tab 2
And what is the name of this master sheet.

So search for value found in??
See this is confusing to me:
Your quote:
So on tab 2, I want cell C4 to search for "Down Low" in cell B11 on the master tab, if it is "Down Low" then enter value from cell F11 into cell C4 on tab 2. If B11 on the
 
Upvote 0
maybe this will make it more clear, sorry for the confusion.

Master tab
1615242619242.png


Tab 2 below
1615242773804.png
 

Attachments

  • 1615242710808.png
    1615242710808.png
    22.8 KB · Views: 1
Upvote 0
Hi again,
I figured out the formula with some help, below is the formula if this helps anyone else out. Remember, when you enter the formula you cant just hit enter when you are done, you have to hold the Shift and Ctrl keys down when you hit enter so it makes it an array and adds the { } at front and end.

=IFERROR(INDEX(Master!B$3:B$6,SMALL(IF(Master!$A$3:$A$6="High",ROW(Master!$B$3:$B$6)-ROW(INDEX(Master!$B$3:$B$6,1,1))+1),ROW()-2)),"")
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,583
Members
449,089
Latest member
Motoracer88

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