For an Excel macro to work properly I need to show all currently filtered entries, which I do with:
ActiveSheet.ShowAllData
After the code has run I would like to reenable the precise filtering options that were active before I disabled them. Is this at all possible?
I also tried to turn off the AutoFilter and turn it back on, hoping that it would remember the settings, but that wasn't the case.
Thank you