+ Reply to Thread
Results 1 to 4 of 4

macro :Cant find project or library

Hybrid View

  1. #1
    Registered User
    Join Date
    05-07-2011
    Location
    nottingham
    MS-Off Ver
    Excel 2003
    Posts
    10

    macro :Cant find project or library

    I am trying to run this macro in Excel 2007 and it stops at the Chr$ This works in excel 2010 but I need to get it to work in 2007 version

    can anyone point me in the right direction?

    Sub Macro1()
      Dim OneCell As Range
        For Each OneCell In Range(Range("B1"), Range("B" & Rows.Count).End(xlUp))
           If Not IsEmpty(OneCell) Then
              OneCell.Offset(0, 1).Font.Name = "Wingdings"
              OneCell.Offset(0, 1).Value = Chr$(252)
           End If
        Next OneCell
    End Sub
    Kindest regards Alex
    Last edited by kamikizzy; 05-30-2011 at 03:01 PM.

  2. #2
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    re: macro :Cant find project or library

    Please use code tags !

    sub snb()
      with Sheets(1).columns(2).specialcells(2).offset(,1)
        .font.name="wingdings"
        .value=chr(252)
      end with
    End Sub



  3. #3
    Registered User
    Join Date
    05-07-2011
    Location
    nottingham
    MS-Off Ver
    Excel 2003
    Posts
    10

    re: macro :Cant find project or library

    Thanks for your input I have managed to do a workaround it my not be pretty as I am still learning I managed to get it to work like this.
    This is not my code it was provided by a good member on here and this site has been of immense help and i look forward to learning more.

    Sub Autotick()
      Dim OneCell As Range
        For Each OneCell In Range(Range("A53:A69"), Range("A" & Rows.Count).End(xlUp))
           If Not IsEmpty(OneCell) Then
              OneCell.Offset(0, 1).Font.Name = "Wingdings"
              OneCell.Offset(0, 1).Value = "ü"
           End If
        Next OneCell
    End Sub
    Kindest Regards Alex

  4. #4
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    re: macro :Cant find project or library

    I don't follow how you define the Range. Why haven't you used snb's code, it will be much faster
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

+ 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