Help with Cross-Criteria in Multiple Columns

Joined
Jul 27, 2017
Messages
24
Hi all,

I'm hoping there is a simple answer to this that I just haven't been able to think of. I simplified my issue into the two tables below, the first being my raw data table and the second being the basic reporting dashboard that I am building out.

Raw Data Table:
Unique IDState 1State 2State 3Impact?
1TexasNo
2CaliforniaTexasYes
3ColoradoKansasCaliforniaYes
4MaineNew YorkColoradoNo

<tbody>
</tbody>

Reporting Dashboard:
StateImpact?
TexasYes
CaliforniaYes
ColoradoYes
KansasYes
MaineNo
New YorkNo

<tbody>
</tbody>

The formula I do not know how to create is whatever formula will fill out my "Impact?" column on my reporting dashboard. Is it a VLOOKUP with conditions? An IF Statement? Any help on this issue would be greatly appreciated, thanks in advance!
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Hi all,

I'm hoping there is a simple answer to this that I just haven't been able to think of. I simplified my issue into the two tables below, the first being my raw data table and the second being the basic reporting dashboard that I am building out.

Raw Data Table:
Unique IDState 1State 2State 3Impact?
1TexasNo
2CaliforniaTexasYes
3ColoradoKansasCaliforniaYes
4MaineNew YorkColoradoNo

<tbody>
</tbody>

Reporting Dashboard:
StateImpact?
TexasYes
CaliforniaYes
ColoradoYes
KansasYes
MaineNo
New YorkNo

<tbody>
</tbody>

The formula I do not know how to create is whatever formula will fill out my "Impact?" column on my reporting dashboard. Is it a VLOOKUP with conditions? An IF Statement? Any help on this issue would be greatly appreciated, thanks in advance!

assuming table 1 is in Sheet1 and table 2 is in Sheet2:

B2 = IF(SUM(IF((Sheet1!$B$2:$D$5=$A2)*(Sheet1!$E$2:$E$5="Yes"),1,0))>0,"Yes","No") press CTRL+SHIFT+ENTER
 
Upvote 0

Forum statistics

Threads
1,214,534
Messages
6,120,080
Members
448,943
Latest member
sharmarick

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