Sub Macro3()
'
Dim x As Integer, y As Range
If Selection.Type = 2 Then
For Each y In Selection.Words
If y Like "#*" = True Then
y.Font.Superscript = True
End If
Next y
Else
MsgBox "请选定文本。", vbOK + vbInformation
End If
End Sub


最新评论及回复