Excel 2013 VBA Clear All Filters macro

Try this:

If ActiveSheet.AutoFilterMode Then ActiveSheet.ShowAllData

ShowAllData will throw an error if a filter isn't currently applied. This will work:

Sub ResetFilters()
    On Error Resume Next
    ActiveSheet.ShowAllData
End Sub