+ Reply to Thread
Results 1 to 19 of 19

MACRO to check validation dropdowns left blank

Hybrid View

  1. #1
    Registered User
    Join Date
    10-25-2008
    Location
    South East Asia
    Posts
    27
    Based on my limited VBA knowledge as well, the following procedure should work.
    Sub IdentifyBlanksinDataValidation()
        On Error Resume NoBlank
        Cells.SpecialCells(xlCellTypeAllValidation).SpecialCells(xlCellTypeBlanks).Select
        MsgBox "There are blank cells...", vbCritical
        Exit Sub
    NoBlank:
    '   Your copying fields to other sheet statements go here...
    End Sub
    I think waiting for an expert's answer is better though.
    Last edited by XiaoWei; 10-27-2008 at 06:58 AM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1