Associate
Is it possible to ignore strikethroughs when doing vlookups ?
Sub Identify_Strikethrough()
Range("A1:A100").Select
For Each Cell In Selection
If Cell.Font.Strikethrough = True Then
Cell.Value = Cell.Value & "*"
End If
Next Cell
End Sub