जवाबों:
अगर कोड एक सेल के भीतर मिलाया जाता है तो मैं इसे बिना कोड के करने का तरीका नहीं देख सकता। आप इस तरह से एक UDF का उपयोग कर सकते हैं:
Function DeleteFormat(aSource As Range) As String
Underline = xlUnderlineStyleSingle
Strikethrough = True
DeleteFormat = ""
For i = 1 To Len(aSource.Value)
If Not (aSource.Characters(i, 1).Font.Strikethrough = Strikethrough And aSource.Characters(i, 1).Font.Underline = Underline) Then
DeleteFormat = DeleteFormat & aSource.Characters(i, 1).Text
End If
Next
अंत समारोह