+ Reply to Thread
Results 1 to 4 of 4

Delete bolded items in column

Hybrid View

Guest Delete bolded items in column 07-15-2005, 01:05 PM
Guest RE: Delete bolded items in... 07-15-2005, 02:05 PM
Guest RE: Delete bolded items in... 07-15-2005, 02:05 PM
Guest Re: Delete bolded items in... 07-15-2005, 03:05 PM
  1. #1
    Annette
    Guest

    Delete bolded items in column

    How would I delete any items in, say column G, through a macro. I'm finding
    I have to manually delete items and it would save time to do this through a
    macro.

    Thanks!

    Annette



  2. #2
    Roy
    Guest

    RE: Delete bolded items in column

    Annette,

    This simple test worked to delete BOLD formatted cells in column A, rows
    1-26 on the Active Sheet. You could subtutute your own looping device.

    For x = 1 To 26
    If Cells(x, 1).Font.Bold = True Then
    Cells(x, 1).Value = ""
    End If
    Next

    Roy

    "Annette" wrote:

    > How would I delete any items in, say column G, through a macro. I'm finding
    > I have to manually delete items and it would save time to do this through a
    > macro.
    >
    > Thanks!
    >
    > Annette
    >
    >
    >


  3. #3
    Roy
    Guest

    RE: Delete bolded items in column

    Annette,

    You might want to turn off the bold format from inside the loop at the same
    time if the same cells aren't being deleted each time by adding this to the
    loop.

    Cells(x, 1).Font.Bold = False

    Roy

    "Roy" wrote:

    > Annette,
    >
    > This simple test worked to delete BOLD formatted cells in column A, rows
    > 1-26 on the Active Sheet. You could subtutute your own looping device.
    >
    > For x = 1 To 26
    > If Cells(x, 1).Font.Bold = True Then
    > Cells(x, 1).Value = ""

    Cells(x, 1).Font.Bold = False 'add to drop bold
    > End If
    > Next
    >
    > Roy
    >
    > "Annette" wrote:
    >
    > > How would I delete any items in, say column G, through a macro. I'm finding
    > > I have to manually delete items and it would save time to do this through a
    > > macro.
    > >
    > > Thanks!
    > >
    > > Annette
    > >
    > >
    > >


  4. #4
    Annette
    Guest

    Re: Delete bolded items in column

    Perfect and saves me tons of time!

    Thanks!
    "Roy" <Roy@discussions.microsoft.com> wrote in message
    news:F3E1E105-D9C2-4AF2-8F8E-B788DEC99EC5@microsoft.com...
    > Annette,
    >
    > This simple test worked to delete BOLD formatted cells in column A, rows
    > 1-26 on the Active Sheet. You could subtutute your own looping device.
    >
    > For x = 1 To 26
    > If Cells(x, 1).Font.Bold = True Then
    > Cells(x, 1).Value = ""
    > End If
    > Next
    >
    > Roy
    >
    > "Annette" wrote:
    >
    >> How would I delete any items in, say column G, through a macro. I'm
    >> finding
    >> I have to manually delete items and it would save time to do this through
    >> a
    >> macro.
    >>
    >> Thanks!
    >>
    >> Annette
    >>
    >>
    >>




+ 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