+ Reply to Thread
Results 1 to 5 of 5

Put a conditional format into a LastRow code

Hybrid View

  1. #1
    Valued Forum Contributor WasWodge's Avatar
    Join Date
    08-02-2010
    Location
    Hampshire,England
    MS-Off Ver
    Office 365 and Office 2010
    Posts
    882

    Put a conditional format into a LastRow code

    Hi there, if anyone can help.
    Is there a way I can put a simple conditional format statement into a piece of LastRow code like

    Sub addFormula3()
        Dim LastRow As Long
        With Sheet1    
            LastRow = .UsedRange.Rows.Count
            .Range(.Cells(2, 16), .Cells(LastRow, 16)).FormulaR1C1 = _
    "=IF(RC[-2]>RC[-1],""OVER CAPACITY"","""")"
       
        End With
    End Sub
    conditional format will be "IF N2 > P2 THEN = COLOUR YELLOW AND BOLD"

    Or any other way of achieving the same?
    Last edited by WasWodge; 03-26-2011 at 10:51 PM.
    If my solution worked (or not) please let me know. If your question is answered then please remember to mark it solved

    Computers are like air conditioners. They work fine until you start opening windows. ~Author Unknown

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Put a conditional format into a LastRow code

    Hello Paul,

    This is written for Excel 2003. Not sure if this will work the same on later versions of Excel.
    Sub addFormula3()
    
      Dim Cell As Range
      Dim FC As Object
      Dim Rng As Range
      
        Set Rng = Sheet1.Range("P2")
        Set Rng = Rng.Resize(Sheet1.UsedRange.Rows.Count - Rng.Row + 1, 1)
        
        Rng.FormulaR1C1 = "=IF(RC[-2]>RC[-1],""OVER CAPACITY"","""")"
        
         For Each Cell In Rng
           If Cell.FormatConditions.Count > 0 Then
              Cell.FormatConditions.Delete
           End If
           Set FC = Cell.FormatConditions.Add(xlExpression, , "=IF(RC[-2]>RC[-1],True,False)")
           FC.Font.Bold = True
           FC.Font.ColorIndex = 6
         Next Cell
         
    End Sub
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  3. #3
    Valued Forum Contributor WasWodge's Avatar
    Join Date
    08-02-2010
    Location
    Hampshire,England
    MS-Off Ver
    Office 365 and Office 2010
    Posts
    882

    Re: Put a conditional format into a LastRow code

    Leith, Thanks for your help so far but I haven't got it to work in 2007 yet but I will have a play around later as it is giving an object required error at

    Set Rng = Sheet1.Range("P2")
    Last edited by WasWodge; 03-26-2011 at 10:30 PM.

  4. #4
    Valued Forum Contributor WasWodge's Avatar
    Join Date
    08-02-2010
    Location
    Hampshire,England
    MS-Off Ver
    Office 365 and Office 2010
    Posts
    882

    Re: Put a conditional format into a LastRow code

    Update.
    Leith, I had been trying to put it in a std module. Put it in a sheet module and is working correctly.
    Thanks again

  5. #5
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Put a conditional format into a LastRow code

    Hello Paul,

    Glad you got it working. I assumed with 117 posts to your credit that including instructions on installing the macro wasn't needed. That's the trouble with assumptions.

+ 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