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

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
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,215,054
Messages
6,122,893
Members
449,097
Latest member
dbomb1414

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