+ Reply to Thread
Results 1 to 3 of 3

Conditional Formatting ?????????

  1. #1
    Registered User
    Join Date
    02-02-2005
    Posts
    3

    Question Conditional Formatting ?????????

    Is there a way with (excel 2000) where a cell meets a certain value (ie: 1 or 2) then the whole row turns a certain color...??? Conditional formatting seems to work only for that cell...

  2. #2
    Forum Contributor
    Join Date
    11-09-2004
    Posts
    451
    you have to use macro

    if range("a1").value="1" then
    rows("1:1").select
    With Selection.Interior
    .ColorIndex = 15
    .Pattern = xlSolid
    .PatternColorIndex = xlAutomatic
    End With
    end if

  3. #3
    Forum Contributor
    Join Date
    01-11-2004
    Location
    England
    MS-Off Ver
    Excel 2007
    Posts
    388
    Hi!

    You can apply conditional formatting to each cell in a row so that each changes if the chosen cell satisfies a given condition. But if you have many such cells probably go for VBA.

    Alf

+ 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