Keeping track of search number references based on criteria <> N

ellison

Active Member
Joined
Aug 1, 2012
Messages
343
Office Version
  1. 365
Platform
  1. Windows
We have Raw Data which we copy and paste via notepad into other information sources .
Search A goes through "Information Source A", Search B goes through "Information Source B", Search C goes through "Information Source C", etc etc
Search A is the quickest and easiest one to yield results, then Search B, then C then D.
So we start off with all of the Raw Data going through Search A, then review the results in order to cull some before sending the remainder Search B. We then repeat these steps for Search C & finally Search D.

The issue we have is that the searches don't give you back the specific search term that was searched for.
Instead they give the results and a reference i.e."Search 1 of 20", "Search 2 of 20" etc

What we'd like is to somehow work out what those references would be... (which would be the numbers in the grey cells in the sample below)

Hopefully some sample data will show what we are getting at, but the actual lists are about 1000 rows

Book1
ABCDEF
1Raw DataReference Numbers for Search "A"Include on Search B?Reference Numbers for Search BInclude Search C?Reference Numbers for Search D
2alpha1N
3beta21n
4charlie_3N
5delta421
6_echo5N
7foxtrot63n
8golf742
9hotel8n
10india_95n
11juliet10n
Sheet3
Cell Formulas
RangeFormula
B2:B11B2=ROW()-1


We can just about figure out how to get the search number for "Search A", but we are totally stumped once it comes to figuring out how to get the corresponding search numbers for the others.

Any help very, very much appreciated!
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Hi I think I've found a workaround...
Get rid of the multiple columns where you review the information and decide whether to carry the search term on to the next search. Instead, only update Column B.
In Column C, put in a formula to give the Search Reference
Set the Excel preferences on calculating formula to manual.

So, first search is all 10 search terms:
Keeping-Track-Of-Search-Number-Refences-Based-On-Criteria.xlsx
ABC
1Raw DataInclude on next Search?Helper To ID Search Reference
2alpha1
3beta2
4charlie_3
5delta4
6_echo5
7foxtrot6
8golf7
9hotel8
10india_9
11juliet10
Sheet3 (2)
Cell Formulas
RangeFormula
C2:C11C2=IF(B2="",COUNTBLANK($B$2:$B2),"")


Review the results and mark where you will "not" carry it forward:

Keeping-Track-Of-Search-Number-Refences-Based-On-Criteria.xlsx
ABC
1Raw DataInclude on next Search?Helper To ID Search Reference
2alphaN1
3beta2
4charlie_N3
5delta4
6_echoN5
7foxtrot6
8golf7
9hoteln8
10india_9
11julietn10
Sheet3 (2)
Cell Formulas
RangeFormula
C2:C11C2=IF(B2="",COUNTBLANK($B$2:$B2),"")



Hit Save, that will now calculate the new "search References":

Keeping-Track-Of-Search-Number-Refences-Based-On-Criteria.xlsx
ABC
1Raw DataInclude on next Search?Helper To ID Search Reference
2alphaN 
3beta1
4charlie_N 
5delta2
6_echoN 
7foxtrot3
8golf4
9hoteln 
10india_5
11julietn 
Sheet3 (2)
Cell Formulas
RangeFormula
C2:C11C2=IF(B2="",COUNTBLANK($B$2:$B2),"")


Now filter Column B for blanks cells in order to find the updated list of of terms to send through the next search:

Keeping-Track-Of-Search-Number-Refences-Based-On-Criteria.xlsx
ABC
1Raw DataInclude on next Search?Helper To ID Search Reference
3beta1
5delta2
7foxtrot3
8golf4
10india_5
Sheet3 (2)
Cell Formulas
RangeFormula
C3,C5,C7:C8,C10C3=IF(B3="",COUNTBLANK($B$2:$B3),"")



Then you review the results & mark up which of those you will not be carrying forward.
-Hit Ctrl-S and you will have the new Search References.
-Filter Column B for non-blanks and you will have the latest updated list of search terms.

Repeat these steps until you get to the last search.
 
Upvote 0

Forum statistics

Threads
1,215,373
Messages
6,124,546
Members
449,169
Latest member
mm424

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