I start out with a list of ip addresses a1-a8.
I use the data set in a1-a8 to perform some function within the unix environment that returns a list completions; another list of ip addresses.
I am trying to figure out how to use Vlookup to compare the
two columns. If an ip address is in column a and in column c
then put the word yes in column b, if not put no in column b.
kind of linke this
COLUMN Column Column
a1-a8 b c
10.10.10.10 Yes 10.10.10.10
10.10.10.11 Yes 10.10.10.11
10.10.10.12 No 10.10.10.13
10.10.10.13 Yes 10.10.10.15
10.10.10.14 No 10.10.10.17
10.10.10.15 Yes
10.10.10.16 No
10.10.10.17 Yes
This would tell me that I have problem with the no's and Id have to go back and check.
Im having a hard time finding examples of vlookup Ozgrid usually is able to answer my questions , but this one is
a killer
=VLOOKUP($A1,$C$1:$C$5,1) returns this ..
10.10.10.10 10.10.10.10 10.10.10.10
10.10.10.11 10.10.10.11 10.10.10.11
10.10.10.12 10.10.10.11 10.10.10.13
10.10.10.13 10.10.10.11 10.10.10.15
10.10.10.14 10.10.10.14 10.10.10.17
10.10.10.15 10.10.10.15
10.10.10.16 10.10.10.15
10.10.10.17 10.10.10.17
HELP PLEASE .. Getting ready to pull what hair I have left out.