Private Sub ListBox1_Click()
Application.ScreenUpdating = False
ListBox2.Clear
Dim NoDupes As Collection
On Error Resume Next
LastCell = Worksheets("Data").Cells(Rows.Count, "B").End(xlUp).Row
With ActiveWorkbook.Worksheets("Data")
.Select
Set NoDupes = New Collection
    For myrow = 1 To LastCell
    If .Cells(myrow, 10).Value <> "" And .Cells(myrow, 10).Value <> "NAME" Then ' <-- Ensure Column 'J' (10) is not empty and the item does not equal the word "NAME"
      If ListBox1.Value = .Cells(myrow, 2).Value Then ' <-- Set criteria to ensure Listbox 1 value is found in Column B
      NoDupes.Add .Cells(myrow, 10).Value, CStr(.Cells(myrow, 10).Value) ' <-- This removes any duplicate values
    If Err.Number = 0 Then
          ListBox2.AddItem Cells(myrow, 10).Value ' <-- This is what is actually populated to the listbox if the above scenarios are met.
          End If
          End If
          Err.Clear
          End If
    Next
End With
Sheets("NAVIGATOR").Activate
Application.ScreenUpdating = True
End Sub
The above explained code is working 99.9% as expected.
However, if i enter the exact same text in Column J(Column 10), but one in sentance case, and the other in CAPITALS, I do not have BOTH populated.

Is there a line of code i can add to check the actual font capitalisation also to rectify this?