+ Reply to Thread
Results 1 to 5 of 5

Identifying boldface cells

  1. #1
    Registered User
    Join Date
    06-03-2010
    Location
    Buenos Aires
    MS-Off Ver
    Excel 2003 & Excel 2010
    Posts
    19

    Identifying boldface cells

    Im using a macro to generate a table of contents with a desired format for a series of reports I have to create. I use a couple of alfanumeric combinations in order to identify cells which contain titles, subtitles, etc, however, these are still a bit to broad and lots of cells which are not relevant are being included in the table of contents.

    I would like to Identify cells which have boldface (all titles and subtitles are boldfaced) but I can't find a function or command which does this.

    The idea would be to only include cells which are boldfaced in the table of contents.

    I'd appreciate any help

  2. #2
    Administrator 6StringJazzer's Avatar
    Join Date
    01-27-2010
    Location
    Tysons Corner, VA, USA
    MS-Off Ver
    MS 365 Family 64-bit 2502
    Posts
    26,838

    Re: Identifying boldface cells

    Edit: I was not clear on whether you are looking for an Excel worksheet function, or a VBA function. The following description creates a user-defined function to use in a worksheet. If you are concerned only with VBA code, you can see from the code below how to determine if a cell has bold text.
    ==

    Excel does not provide built-in support for determining format attributes of a cell, but this can easily be written as a user-defined function in VBA.

    You can install the following function into your file:
    Please Login or Register  to view this content.
    It will return TRUE if the cell format is bold and FALSE if not. It will return FALSE if the range provided has more than one cell.

    You use it something like this:

    =IF(IsBold(A1),"The cell is bold","The cell is NOT bold")

    Beacuse we're in a Programming forum I assume you know how to install the code but if not let me know and I'll post additional instructions.
    Last edited by 6StringJazzer; 06-03-2010 at 02:29 PM.
    Jeff
    | | |會 |會 |會 |會 | |:| | |會 |會
    Read the rules
    Use code tags to [code]enclose your code![/code]

  3. #3
    Registered User
    Join Date
    06-03-2010
    Location
    Buenos Aires
    MS-Off Ver
    Excel 2003 & Excel 2010
    Posts
    19

    Re: Identifying boldface cells

    Thanks for the quick response

    Since I was running through all the cells I was able to use the command .Font.Bold, instead of having to create a function.

    In other words this is basically what I did

    Please Login or Register  to view this content.

    Works great! This will save me a lot of time. Thanks again.

  4. #4
    Administrator 6StringJazzer's Avatar
    Join Date
    01-27-2010
    Location
    Tysons Corner, VA, USA
    MS-Off Ver
    MS 365 Family 64-bit 2502
    Posts
    26,838

    Re: Identifying boldface cells

    Coding Lesson #37: You do not need to compare the value of a Boolean expression to True or False. The Boolean is already True or False, so you do not need to add a comparison on top of that which will evaluate to True or False.

    In this example you could use:
    Please Login or Register  to view this content.
    Doing the comparison doesn't really hurt anything (a good compiler probably optimizes it out) but it's considered more elegant style to omit it.

  5. #5
    Registered User
    Join Date
    06-03-2010
    Location
    Buenos Aires
    MS-Off Ver
    Excel 2003 & Excel 2010
    Posts
    19

    Re: Identifying boldface cells

    Thanks, lesson learned.


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1