Good morning, I had been sent an xlsm workbook and had successfully modified it some time ago according to my user's requirements. He has just bounced it back to me as all of the cells become strikethrough as soon as anything is typed in a cell or it is populated through code, even though the cell formatting appears to contradict this. We're far too far into the process to start again with a clean sheet - as I have too many other business-critical obligations on my plate.
I tried something - that had no visible affect:
Does anyone have any idea what might be going on?
Many thanks,
D€$
I tried something - that had no visible affect:
Code:
Dim ws As Worksheet
For Each ws In ThisWorkbook.Worksheets
ws.Visible = xlSheetVisible
ws.Cells.Font.Strikethrough = False
Next ws
Does anyone have any idea what might be going on?
Many thanks,
D€$