Check dirty list for clean list content return true or false

Just_Pat

New Member
Joined
Sep 27, 2018
Messages
10
Office Version
  1. 2016
Platform
  1. Windows
Hello again it's been a while,

I am running into a bit of an issue where I have to compare one column with "Clean Data" with another that has data with added baggage. The purpose of this is to figure out if the servers we have that should be backed up have been backed up by our agent.

Here is a test file I have been playing with: http://www.filedropper.com/testlist

So far none of the things I have tried have granted the expected results my last attempt was =IF(OR(COUNTIF([@[Server List]], "*"&BackupList[Backup List]&"*")), "Yes", "No") but that only returns the expected result if the "Dirty List" is an exact cell match which is sadly rarely the case. Is there a way to have it look for the cell value and have it ignore the irrelevant stuff?
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
How about
Excel Formula:
=IF(COUNTIFS(BackupList[Backup List],"*"&[@[Server List]]&"*"),"Yes","No")
 
Upvote 0
Solution
How about
Excel Formula:
=IF(COUNTIFS(BackupList[Backup List],"*"&[@[Server List]]&"*"),"Yes","No")
Thank you so much this works!
If my problem was akin to finding a needle in a hay stack your solution is akin to a very large electro magnet... ok a very disproportionate analogy but I was stuck there so thank you :)
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,595
Members
449,089
Latest member
Motoracer88

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