Conditional Match and Post

InNeedOf

New Member
Joined
May 19, 2011
Messages
2
Tried my best on the title..
Here is what I need to do.
Have two sheets in a excel workbook.
Sheet names:
PNET RAW DATA
SHEET3

In Sheet 3 I want to look up a value in a column from PNET RAW DATA and for every iteration where the cell value is POSSIBLE CONFLICT, pull the value of another cell in PNET RAW DATA and show that value in the cell in SHEET3 or an array in SHEET3 or even a pivot table?
If it DOES NOT match Possible Conflict I want it to ignore until it finds a match.
End result a LIST of ONLY those which have possible conflict in array named Presto or column AI in PNET RAW DATA.

Been working with this this far.. And this pulls it properly but does not continue
=IF('Pnet Raw Data'!AI:AI="Possible Conflict",'Pnet Raw Data'!$A:$A,"--")
--
Thanks!
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Hi,

Welcome to MrExcel.

Is this something like you want to do?...


Excel Workbook
AB
1NameStatus
2tomOk
3****Ok
4HarryPossible Conflict
5SallyOk
6MaryOk
7JimPossible Conflict
8JillPossible
9JoConflict
10JoeOk
11TimOk
12StanPossible Conflict
13tomOk
14DomOk
15MrExcelPossible Conflict
16SallyPossible
17MaryConflict
18JimOk
19HomerOk
20JohnPossible Conflict
21JoeOk
22TommyOk
23AkPossible Conflict
24TonyPossible
25DanConflict
PNET RAW DATA



Excel Workbook
ABCD
1countStatus*Names
26Possible Conflict*Harry
3***Jim
4***Stan
5***MrExcel
6***John
7***Ak
Sheet3


The formula in D2 needs entering with ctrl shift enter NOT enter.
Copy the formula down as far as you require.

You will need to change the cell ranges to suit your situation.

I hope that helps.

Good luck.

Ak
 
Upvote 0
Hi,

Welcome to MrExcel.

Is this something like you want to do?...


Excel Workbook
AB
1NameStatus
2tomOk
3****Ok
4HarryPossible Conflict
5SallyOk
6MaryOk
7JimPossible Conflict
8JillPossible
9JoConflict
10JoeOk
11TimOk
12StanPossible Conflict
13tomOk
14DomOk
15MrExcelPossible Conflict
16SallyPossible
17MaryConflict
18JimOk
19HomerOk
20JohnPossible Conflict
21JoeOk
22TommyOk
23AkPossible Conflict
24TonyPossible
25DanConflict
PNET RAW DATA



Excel Workbook
ABCD
1countStatus*Names
26Possible Conflict*Harry
3***Jim
4***Stan
5***MrExcel
6***John
7***Ak
Sheet3


The formula in D2 needs entering with ctrl shift enter NOT enter.
Copy the formula down as far as you require.

You will need to change the cell ranges to suit your situation.

I hope that helps.

Good luck.

Ak
If you index the entire column then you don't have to calculate an "offset correction".

Array entered**

=IF(ROWS(D$2:D2)>$A$2,"",INDEX('PNET RAW DATA'!$A:$A,SMALL(IF('PNET RAW DATA'!$B$2:$B$25=$B$2,ROW('PNET RAW DATA'!$A$2:$A$25)),ROWS(D$2:D2))))

** array formulas need to be entered using the key combination of CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT key then hit ENTER.
 
Upvote 0

Forum statistics

Threads
1,224,503
Messages
6,179,134
Members
452,890
Latest member
Nikhil Ramesh

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