XL98: Making the Active Row Bold Using SelectionChange (183844)



The information in this article applies to:

  • Microsoft Excel 98 Macintosh Edition

This article was previously published under Q183844

SUMMARY

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.

MORE INFORMATION

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. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers 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 requirements. 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.

REFERENCES

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:

179216 OFF98: How to Use the Microsoft Office Installer Program


Modification Type:MajorLast Reviewed:6/17/2005
Keywords:kbdtacode kbProgramming KB183844