Microsoft Knowledge Base Email Alertz

KBAlertz.com: When you work in a Microsoft Excel worksheet, you may want to make the active item bold so that it is easier to read. This article contains a sample Microsoft Visual Basic for Applications macro that makes the font of the current row bold.

Receive Microsoft Knowledge Base articles by E-Mail?

Every night we scan the Microsoft Knowledge Base. If technologies you're interested in are updated, we'll send you an e-mail. You only get one e-mail a day, and only when new articles are added.

Click here to create a
FREE account
Already have an account?
[Click here to Login]

Search KbAlertz

Advanced Search

Webmasters
Put kbAlertz on your website.
[ Click Here for more! ]





ASP.NET 3.5 Web Hosting with Windows 2008 and SQL 2008: Click Here!
Discount ASP.NET Hosting
ASP.NET 2.0 and 3.5
Windows2008 and SQL2008
US and UK Hosting
KBAlertz referrals get
** SIX MONTHS FREE **


Community Site



We Send hundreds of thousands of emails using ASP.NET Email


ASP.NET 3.5 Web Hosting with Windows 2008 and SQL 2008: Click Here!
Discount ASP.NET Hosting
ASP.NET 2.0 and 3.5
Windows2008 and SQL2008
US and UK Hosting
KBAlertz referrals get
** SIX MONTHS FREE **




Mentioned In








Microsoft Knowledge Base Article

This article contents is Microsoft Copyrighted material.
©2005-©2007 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks




Article ID: 213193 - Last Review: November 23, 2006 - Revision: 3.5

XL2000: How to Use the SelectionChange Event to Make the Active Row Bold

This article was previously published under Q213193

SUMMARY

When you work in a Microsoft Excel worksheet, you may want to make the active item bold so that it is easier to read. This article contains a sample Microsoft Visual Basic for Applications macro that makes the font of the current row bold.

MORE INFORMATION

The example below uses the worksheet's SelectionChange event to change the font style of the current row. Each time that 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 containing 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 a Microsoft Certified Partner or Microsoft Advisory Services. For more information, visit these Microsoft Web sites:

Microsoft Certified Partners - https://partner.microsoft.com/global/30000104 (https://partner.microsoft.com/global/30000104)

Microsoft Advisory Services - http://support.microsoft.com/gp/advisoryservice (http://support.microsoft.com/gp/advisoryservice)

For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:http://support.microsoft.com/default.aspx?scid=fh;EN-US;CNTACTMS (http://support.microsoft.com/default.aspx?scid=fh;en-us;cntactms) To change the font style of the current row by using the sample macro, follow these steps:
  1. Create a new workbook.
  2. Start the Visual Basic Editor (press ALT+F11).
  3. If the Project window is not visible, click Project Explorer on the View menu (or press CTRL+R).
  4. In the Project Explorer, double-click Sheet1.
  5. In the Code window that opens for Sheet1, click Worksheet in the Object list, and then click SelectionChange in the Procedure list.
  6. Type or paste 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. Switch to Excel (press ALT+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 previously selected row changes back to the normal font style, and the new active 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 certain editing features, such as the Copy command.

APPLIES TO
  • Microsoft Excel 2000 Standard Edition
Keywords: 
kbdtacode kbhowto kbinfo kbprogramming KB213193
       

Community Feedback System

Very often, it takes hours to solve a problem. Very often, you've looked high and low, and have tried a lot of solutions. When you finally found it, chances are, it was because someone else helped you. Here's your chance to give back. Use our community feedback tool to let others know what worked for you and what didn't.

Please also understand that the community feedback system is not warranted to be correct, it's simply a system that we've built to let people try and help each other. If something in a feedback response doesn't make sense to you, or you're not comfortable making changes that the feedback talks about (like registry edits), please consult a professional.

Thank you for using kbAlertz.com Feedback System.

-- Scott Cate

Be the first to leave feedback, to help others about this knowledge base article.

(Optional) Name

(Optional) Public URL Or Email

Comments
No HTML -- Text Only Please