Microsoft KB Archive/159493

From BetaArchive Wiki

Article ID: 159493

Article Last Modified on 11/23/2006



APPLIES TO

  • Microsoft Excel 97 Standard Edition



This article was previously published under Q159493


SUMMARY

In Microsoft Excel 97, you can use the Circle Invalid Data button on the Auditing toolbar to identify cells which contain values that are outside the data validation limits. A red circle is placed around each identified cell. These circles are not printed when you print the worksheet.

This article provides a macro that you can use to display circles around invalid data for printing purposes.

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact a Microsoft Certified Partner or the Microsoft fee-based consulting line at (800) 936-5200. For more information about Microsoft Certified Partners, please visit the following Microsoft Web site:

For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:

Sample Macro

Sub AddValidationCirclesForPrinting()

    Dim DataRange As Range
    Dim c As Range
    Dim count As Integer
    Dim o As Shape

    'Set an object variable to all of the cells on the active
    'sheet that have data validation -- if an error occurs, run
    'the error handler and end the procedure
    On Error GoTo errhandler
    Set DataRange = Cells.SpecialCells(xlCellTypeAllValidation)
    On Error GoTo 0

    count = 0

    'Loop through each cell that has data validation
    For Each c In DataRange

       'If the validation value for the cell is false, then draw
       'a circle around the cell. Set the circle's fill to
       'invisible, the line color to red and the line weight to
       '1.25
       If Not c.Validation.Value Then
           Set o = ActiveSheet.Shapes.AddShape(msoShapeOval, _
               c.Left - 2, c.Top - 2, c.Width + 4, c.Height + 4)
           o.Fill.Visible = msoFalse
           o.Line.ForeColor.SchemeColor = 10
           o.Line.Weight = 1.25

           'Change the name of the shape to InvalidData_ + count
           count = count + 1
           o.Name = "InvalidData_" & count
       End If
   Next
   Exit Sub

 errhandler:
   MsgBox "There are no cells with data validation on this sheet."

 End Sub

 Sub RemoveValidationCircles()

    Dim shp As Shape

    'Remove each shape on the active sheet that has a name starting
    'with InvalidData_

    For Each shp In ActiveSheet.Shapes
       If shp.Name Like "InvalidData_*" Then shp.Delete
    Next

 End Sub
                

How to Use the Sample Macro

To use the sample macro, follow these steps:

  1. Start a new workbook.
  2. To activate the Visual Basic Editor, press ALT+F11.
  3. On the Insert menu, click Module.
  4. Type the sample macro in the code window of the module sheet.
  5. On the File menu, click "Close and Return to Microsoft Excel".
  6. Save the workbook.

    NOTE: The workbook must be open to use the macros. If you would like the macros to be available each time you start Microsoft Excel, save the workbook in the \Program Files\Microsoft Office\Office\XlStart folder.
  7. Open the workbook you want to evaluate for invalid data, and activate the appropriate worksheet.
  8. On the Tools menu, point to Macro, and then click Macros. Click to select "AddValidationCirclesForPrinting" in the list of macros, and click Run.

    Each cell that contains invalid data is now surrounded by a red circle (up to a maximum of 255 cells per worksheet). If the active worksheet does not contain any cells with data validation, you will receive the message

    There are no cells with data validation on this sheet.

    and the macro will end.
  9. Print the worksheet.
  10. After you print the worksheet, you can run the RemoveValidationCircles macro to remove the circles. On the Tools menu, point to Macro, and click Macros. Select RemoveValidationCircles in the list of macros, and click Run.



Additional query words: XL97 8.00

Keywords: kbdtacode kbhowto kbprogramming kbualink97 KB159493