ISBLANK function

  • Thread starter Thread starter keyt
  • Start date Start date
K

keyt

What is the syntax for including ISBLANK in an advanced
filter?

The criteria should include showing all records that have
a blank field (column).

ie:

Name Date
TOM
 
Keyt,

Got me stumped on ISBLANK.

BUT - you could do a GoTo Special and hide the selected
rows (do this for constants and than for formulas):

Columns("A:A").SpecialCells(xlCellTypeConstants, 23) _
.EntireRow.Hidden = True
Columns("A:A").SpecialCells(xlCellTypeFormulas, 23) _
.EntireRow.Hidden = True
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

isblank function in Excel VBA 2003 ??? 1
Access Dcount (multiple criteria) 3
Excel code, end function? 0
ISBLANK 1
Problem with ISBLANK Function 5
isblank 2
SUMIF non-blank cells? 5
advanced filter looking for blank cells 1

Back
Top