I finished programming my buttons to toggle between summary / complete views, which works fine.
Dim cell As Range
For Each cell In Range("B:B")
If cell = "i" Then Rows(cell.Row).Hidden = True (False for complete view)
Next
There is just this small problem, which I know is normal, but I wonder if I can do something about it: when the file is big, and there is lets say more than a 100 rows, the screen goes jumping for a few seconds while the macro is being executed. I know it can be explained by the fact the program is a cycle, but is there anything I can do so that the screen doesn't jump?
Bookmarks