The answer is quite simple, first identify how many total rows you have on your spreadsheet. Then, go to any column in Open Refine.
Then do facet->custom text facet.
In the box, enter the following GREL:
filter(row.columnNames,cn, isBlank(cells[cn].value))
This will make a facet out of each column, with the number of blank rows listed to the right:
There are 414 rows total on this spreadsheet, so any column with "414" next to it is completely blank. |