I have a button on a sheet that gets information from other sheets then deletes every thing on the sheet with the button from cell C1 to Cell ff112 then displays the data.
This works fine when i have the workbook in exclusive mode so noone else can edit it, but When i "Protect and share" it the button deletes all cells including row A and B AND deletes the button.
Why does this button work differently in shared mode than non shared?
ok so I have narrowed it down to this code
Sub Eraser()
Sheets("Batch Record Progress").Activate
Workbooks("Work in Process.xls").Sheets("Batch Record Progress").Range("C1:FF112").Select
Selection.Delete
Workbooks("Work in Process.xls").Sheets("Batch Record Progress").Range("C1").Activate
End Sub