I don't know of the amount of the data you need to import.
I came up with a formula. First some info.
I created two sheets:
- Import - this one contains imported data (obviously
)
- Verification - this one contains keywords to search for and a searching formula
Excel 2016 (Windows) 32 bit
| A |
---|
Imported data | |
Imp1 | |
Imp2 | |
car | |
forest | |
something | |
smthelse | |
anything | |
home | |
sky | |
<tbody>
[TD="align: center"]1[/TD]
[TD="align: center"]2[/TD]
[TD="align: center"]3[/TD]
[TD="align: center"]4[/TD]
[TD="align: center"]5[/TD]
[TD="align: center"]6[/TD]
[TD="align: center"]7[/TD]
[TD="align: center"]8[/TD]
[TD="align: center"]9[/TD]
[TD="align: center"]10[/TD]
</tbody>
Import sheet above
Excel 2016 (Windows) 32 bit
| A | B | C |
---|
keyword to look for | Keywords found? | Amount of keywords found | |
car | Keywords found! | | |
forest | | | |
<tbody>
[TD="align: center"]1[/TD]
[TD="align: center"]2[/TD]
[TD="align: right"]2[/TD]
[TD="align: center"]3[/TD]
[TD="align: right"][/TD]
[TD="align: right"][/TD]
</tbody>
Verification sheet
[TABLE="width: 85%"]
<tbody>[TR]
[TD]
Array Formulas[TABLE="width: 100%"]
<tbody>[TR]
[TH]Cell[/TH]
[TH="align: left"]Formula[/TH]
[/TR]
[TR]
[TH]B2[/TH]
[TD="align: left"]{=IF(
SUM(IF(ISERROR(MATCH(A2:A4,Import!$A$2:$A$13,0)),0,1))>0,"Keywords found!","")}[/TD]
[/TR]
[TR]
[TH]C2[/TH]
[TD="align: left"]{=SUM(
IF(ISERROR(MATCH(A2:A4,Import!$A$2:$A$13,0)),0,1))}[/TD]
[/TR]
</tbody>[/TABLE]
Entered with Ctrl+Shift+Enter. If entered correctly, Excel will surround with curly braces {}.
Note: Do not try and enter the {} manually yourself[/TD]
[/TR]
</tbody>[/TABLE]
What do you think?