I am trying to clear all data from a worksheet in a web version of Excel. The VBA code I use on my desktop version is
Sub sbClearEntireSheetOnlyData()
Sheets("Sheet4").Cells.ClearContents
End Sub
Can someone "translate" this to Office Scripts? Thanks in advance.
Dave
Sub sbClearEntireSheetOnlyData()
Sheets("Sheet4").Cells.ClearContents
End Sub
Can someone "translate" this to Office Scripts? Thanks in advance.
Dave