I have an Excel spreadsheet with 10 columns.
The cells within the first 2 columns contain text and the remaining 8 cells contain 'blank', 0 or 1.
How can I hide all rows where the 8 columns do not contain any blank cells?
21 Answer
Here is an easy work-around:
- Go to the empty column K.
- Input the following function:
=COUNTIF(C2:K2;"")and copy for entire column. - Blank cells will be counted.
- "8" means all columns are empty for a particular row.
- Use filter on K column to hide all "8" (to hide empty rows) or mark all numbers except "8" (to display empty rows only).