Hello,
I have a excel file that has strike through data, is it possible to remove all strike through information from the excel sheet?
Hello,
I have a excel file that has strike through data, is it possible to remove all strike through information from the excel sheet?
Function RemoveStrikeThrough(sheetName As String)
ActiveWorkbook.Sheets(sheetName).Activate
Cells.Select
Selection.Font.Strikethrough = False
ActiveWorkbook.Save
End Function
{"Sheet1"}
(or your own sheet name)That worked
Thank you!!!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.