ID: Q183844
The information in this article applies to:
When you work in a Microsoft Excel worksheet, you may want to make the current work item bold to make it easier to read. This article contains a sample Visual Basic for Applications macro that makes the font of the current row bold.
The example uses the SelectionChange event of the worksheet to change the font of the current row. Each time you make a new selection on the worksheet, the entire row that contains the selection becomes bold.
NOTE: When you select a range that contains more than one row, only the row that contains the active cell becomes bold.
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/refguide/
To change the font of the current row by using the sample macro, follow
these steps:
1. Create a new workbook.
2. Start the Visual Basic Editor (press OPTION+F11).
3. If the Project window is not visible, click Project Explorer on the
View menu (or press COMMAND+R).
4. In the Project Explorer, double-click Sheet1.
5. In the Module window that is opened for Sheet1, click Worksheet in the
Object list and click SelectionChange in the Procedure list.
6. In the module for Sheet1, type the following code for the Worksheet
SelectionChange Event:
Dim x as Long
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
' Set the row containing the active cell to bold.
ActiveCell.EntireRow.Font.Bold = True
' Check for first execution of the macro and set row value
' if it is:
If x = Empty Then
x = ActiveCell.Row
' Set previous row property back to normal, or not bold.
ElseIf Not x = ActiveCell.Row Then
Rows(x).EntireRow.Font.Bold = False
End If
' Capture new row value for comparison against next selection.
x = ActiveCell.Row
End Sub
7. Stitch to Microsoft Excel (press OPTION+F11).
8. Select a cell anywhere on Sheet1.
The entire row in which the active cell is located becomes bold. When you select a new cell, the old row changes back to the normal font, and the new row becomes bold.
NOTE: As a result of using the SelectionChange event and the macro assigned to it, you may not be able to use some editing features, for example the Copy command.
For more information about SelectionChange event, click the Office Assistant, type "SelectionChange event" click Search, and then click to view "SelectionChange Event."
NOTE: If the Assistant is hidden, click the Office Assistant button on the Standard toolbar. If Microsoft Help is not installed on your computer, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q179216
TITLE : OFF98: How to Use the Microsoft Office Installer Program
Additional query words: Event XL98
Keywords : kbprg kbdta kbdtacode OffVBA
Version : MACINTOSH:98
Platform : MACINTOSH
Last Reviewed: May 18, 1999