To find and select (and optionally, to format) cells that contain specific information or meet specific conditions we would usually use Go To command. That's simple: on the Home tab click Find & Select > Go To (or use shortcut: CTRL+G). When we click Special in the displayed Go To Special dialog box, we get many options to choose from; can look for Comments, Constants, Formulas, Blanks, Objects, Last cell, Conditional formats, etc.
However, we may need to use a completely different option. What if we'd like to find simultaneously (in one pass) for e.g. two or more different numbers or strings? There is no such option in the dialog box, so we have to find out a different approach.
Here's an example; I'm using the Excel macro listed below to find and fill with different colors all cells (in the specified range) containing four specific values. I need only replace the default values "a,b,3,4" with my own; here I've used "lost,123,mat,cat":

Sub HighlightSpecificCells()
'Applies different fill colors to cells containing different specified values
'This example fills cells containing four different strings/values
Dim rng As Range
Dim cell As Range
Dim inp As String
Dim vaArray() As String
Set rng = Range("A1:Z100") 'Change the range to the desired one
inp = InputBox("Enter values, separated by comma, you want to find in the specified range", _
"Find and format cells that store specified values", "a,b,3,4")
vaArray = Split(inp, ",") 'Split the string using comma as the delimiter
'Loop through cells of the range
For Each cell In rng
If cell.Value = vaArray(0) Then cell.Interior.ColorIndex = 4
If cell.Value = vaArray(1) Then cell.Interior.ColorIndex = 6
If cell.Value = vaArray(2) Then cell.Interior.ColorIndex = 24
If cell.Value = vaArray(3) Then cell.Interior.ColorIndex = 44
Next cell
End Sub
This way, in a single pass you find your all specified values and fill the cells with the specified different color for each value.
This is just an example. You can modify the macro to meet your specific number of values, choice of colors, and whatever else you need.