C
chadmjohn
I have a workbook with 20+ worksheets in it. Each worksheet contains a
series of columns where generally the 'key' (not a real key but the
term will suffice for this example) is in the first column and various
attributes of that key exist in subsequent columns.
I have a summary sheet as the first one and what I want is a base
formula that will tell me if the value I'm looking for exists in a
target worksheet (the 'key' column) and if it does, does the value in
one of the subsequent 'value' columns match some pattern.
I have searched around but I don't really know what features, methods
etc I am looking for so it's a little hard. Below are some examples of
what I had tried.
In this example "C$1" contains the name of a server. This works to
find the name but I wanted to be able to link the PASS/FAIL status to
some additional attribute in the subsequent columns in
"$B$23:$B$65536".
IF((VLOOKUP(C$1,$B$23:$B$65536,1,FALSE)=C1),"P","N")
I have also tried the above formula combined with an 'AND' but that did
not yield what I was after.
As a basic example, I have a list of server names in Worksheet1!B1 - G1
and want to check each server name for presence in Worksheet2!A2-A100.
If the server exists in the list on Worksheet2!A2-A100 AND it's
corresponding (same row) value in Worksheet2!B2-B100 is equal to some
value, return true.
Any help is truly appreciated.
series of columns where generally the 'key' (not a real key but the
term will suffice for this example) is in the first column and various
attributes of that key exist in subsequent columns.
I have a summary sheet as the first one and what I want is a base
formula that will tell me if the value I'm looking for exists in a
target worksheet (the 'key' column) and if it does, does the value in
one of the subsequent 'value' columns match some pattern.
I have searched around but I don't really know what features, methods
etc I am looking for so it's a little hard. Below are some examples of
what I had tried.
In this example "C$1" contains the name of a server. This works to
find the name but I wanted to be able to link the PASS/FAIL status to
some additional attribute in the subsequent columns in
"$B$23:$B$65536".
IF((VLOOKUP(C$1,$B$23:$B$65536,1,FALSE)=C1),"P","N")
I have also tried the above formula combined with an 'AND' but that did
not yield what I was after.
As a basic example, I have a list of server names in Worksheet1!B1 - G1
and want to check each server name for presence in Worksheet2!A2-A100.
If the server exists in the list on Worksheet2!A2-A100 AND it's
corresponding (same row) value in Worksheet2!B2-B100 is equal to some
value, return true.
Any help is truly appreciated.