Forum Discussion
John39
Apr 28, 2021Copper Contributor
Hiding Rows by odd or even numbers
is there a way to select/hide Rows by odd or even numbers? instead of picking each Row separately
HansVogelaar
Apr 28, 2021MVP
You could populate an unused column with formulas =ISODD(ROW())
You can then filter for TRUE to see the odd-numbered rows and hide the even-numbered ones, or for FALSE to do the reverse.
John39
Apr 28, 2021Copper Contributor
THANK THIS IS EXACTLY WHAT I NEEDEDHansVogelaar