Consulting

Results 1 to 3 of 3

Thread: Solved: Using Bold with .Cells Object?

  1. #1

    Solved: Using Bold with .Cells Object?

    Is there any way to do this?

    .Cells(1, 1).Bold ? (<--That doesn't work obviously)

    I have a module already written using .Cells (not Range) and there are ceratin cells that I would like to make bold as they are written.

    Thanks

  2. #2
    Knowledge Base Approver VBAX Wizard p45cal's Avatar
    Joined
    Oct 2005
    Location
    Surrey UK
    Posts
    5,876
    .Cells(1, 1).Font.Bold = True
    p45cal
    Everyone: If I've helped and you can't be bothered to acknowledge it, I can't be bothered to look at further posts from you.

  3. #3
    Sweet! Thanks!!

Posting Permissions

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