Contains is unable to find VbTab & Chr(...)
Public Function GetBullet(Txt As String) As String
GetBullet = ""
If Txt.Contains(vbTab & Chr(149)) Then GetBullet = Chr(149)
If Txt.Contains(vbTab & Chr(176)) Then GetBullet = Chr(176)
If Txt.Contains(vbTab & Chr(183)) Then GetBullet = Chr(183)
If Txt.Contains(vbTab & Chr(187)) Then GetBullet = Chr(187)
End Function
E.g:
Txt: vbTab & "・My text"
Asc(Mid(Txt,2,1)) returns 183
GetBullet returns "" at the end of the function
Is it a bug or did I write something wrong?