Below vba code to highlight non-unicode cells, as it make non-unicode to unicode also please suggest
<CODE>
Sub Dimitris2()
Dim cell As Range, weird As Boolean, cnt&
cnt = 0
For Each cell In ActiveSheet.UsedRange
weird = False
If Not IsError(cell) Then
If Len(cell) > 0 Then...