Using VLOOKUP, I'm comparing 2 sheets to check if the host is monitored. I extracted the list of guests in sheet1 and the list of hosts in sheet2
Sheet1
A1
Win-2K8-dev1 (335d5188-2e63-44cc-978a-51ea4c90e24c)
Win-2K8-mail1 (345d5188-2w64-47cf-973n-53ef459he2rx)
..
.
Sheet2
A1
Win-2K8-dev1
Win-2K8-mail1
..
.
Using the formula below in Sheet1:D1 but it doesn't match
=IFERROR(VLOOKUP(A1&"*",'Sheet2'!$A$1:$A$224,1,FALSE),"NOT MONITORED")
I also tried
=IFERROR(VLOOKUP(A1&"*",SEARCH('Sheet2'!$A$1:$A$224,1),FALSE),"NOT MONITORED")
How can I search the table array with a wildcard ?
Thanks
Gaetan
Sheet1
A1
Win-2K8-dev1 (335d5188-2e63-44cc-978a-51ea4c90e24c)
Win-2K8-mail1 (345d5188-2w64-47cf-973n-53ef459he2rx)
..
.
Sheet2
A1
Win-2K8-dev1
Win-2K8-mail1
..
.
Using the formula below in Sheet1:D1 but it doesn't match
=IFERROR(VLOOKUP(A1&"*",'Sheet2'!$A$1:$A$224,1,FALSE),"NOT MONITORED")
I also tried
=IFERROR(VLOOKUP(A1&"*",SEARCH('Sheet2'!$A$1:$A$224,1),FALSE),"NOT MONITORED")
How can I search the table array with a wildcard ?
Thanks
Gaetan