Hi,
Could you please let me know how can I set up similar macro in ONLYOFFICE? Or is this possible to do it in the UI?
I couldn’t find any similar functions to it, and I had no luck going through the documentation.
I use this to refresh the filter when a calculation is done to show/hide rows.
Private Sub Worksheet_Change(ByVal Target As Range)
ActiveSheet.ListObjects(1).AutoFilter.ApplyFilter
End Sub
Sub RefreshFilter()
ActiveSheet.ListObjects(1).AutoFilter.ApplyFilter
End Sub