I am receiving a syntax error when trying to compile my macros. I do not understand the problem with this macro. I receive no errors within Excel, only within XLS Padlock.
Do not forget to use Application for Excel-related objects (see our user guide):
Dim WorkRange As Range
Dim i As Integer
Set WorkRange = Application.ActiveSheet.UsedRange
For i = 1 To WorkRange.Rows.Count
WorkRange.Cells(2, i).Value = ""
Next