I was trying to find a way of copying a cell's value and strikethrough. However, when only part of the text is strikethrough then it gets trickier. So i wrote this in order to just spot the characters that are "strikethrough-ed".
If anyone knows of a better way to copy only the strikethrough, and not other formmating, i'd appreciate your thoughts....Thanks!!
With ActiveCell
For i = 1 To .Characters.Count
If .Characters(i, 1).Font.Strikethrough = True Then MsgBox .Characters(i, 1).Text
Next
End With
If anyone knows of a better way to copy only the strikethrough, and not other formmating, i'd appreciate your thoughts....Thanks!!
With ActiveCell
For i = 1 To .Characters.Count
If .Characters(i, 1).Font.Strikethrough = True Then MsgBox .Characters(i, 1).Text
Next
End With