XL97: Macro to Create Data Validation Circles for Printing
ID: Q159493
|
The information in this article applies to:
-
Microsoft Excel 97 for Windows
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
the Microsoft fee-based consulting line at (800) 936-5200. For more
information about the support options available from Microsoft, please see
the following page on the World Wide Web:
http://www.microsoft.com/support/supportnet/overview/overview.asp
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:
- Start a new workbook.
- To activate the Visual Basic Editor, press ALT+F11.
- On the Insert menu, click Module.
- Type the sample macro in the code window of the module sheet.
- On the File menu, click "Close and Return to Microsoft Excel".
- 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.
- Open the workbook you want to evaluate for invalid data, and activate
the appropriate worksheet.
- 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.
- Print the worksheet.
- 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 : kbprg kbualink97 kbdta kbdtacode KbVBA xlprint
Version : WINDOWS:97
Platform : WINDOWS
Issue type : kbhowto