For splitting a file into several files by unique names in certain column I used a wonderful VBA snippet from this answer.
I've added some code to achieve required functionality like replacing .SpecialCells
to .EntireRow
and adding multiple filters to meet all possible cases in that task of splitting.
However, I've found that after linking this snippet to UserForm via button, Excel's starting blinking and filtering as the snippet works in real time. I have to split an Excel file into several hundreds, and it is rather complicated task in terms of PC's perfomance.
The question is "Are there any VBA or Excel settings to run VBA snippets silently without GUI events?". I hope the nature of my question is clear.