+ Reply to Thread
Results 1 to 2 of 2

syntax help

Hybrid View

TRJJK73 syntax help 05-08-2009, 07:39 AM
sweep Re: syntax help 05-08-2009, 07:54 AM
  1. #1
    Registered User
    Join Date
    07-14-2008
    Location
    INDIA
    Posts
    78

    syntax help

    Hi,

    I do not know where I am going wrong in the following line of code.
    With .Range("D5:D" & LR1)
                    If .Value = "" Then .EntireRow.Interior.ColorIndex = 6
            End With
    Thank you.

  2. #2
    Forum Expert sweep's Avatar
    Join Date
    04-03-2007
    Location
    Great Sankey, Warrington, UK
    MS-Off Ver
    2003 / 2007 / 2010 / 2016 / 365
    Posts
    3,454

    Re: syntax help

    Hi,

    Is this piece of code within another With statement? If not you should replace

    With .Range("D5:D" & LR1)
    with

    With Range("D5:D" & LR1)
    Additionally you are trying to extract the value of a range of cells, effectively

    If Range(D5:D10).Value = "" Then ........
    Which can't be done.


    I think that you're trying to highlight a row yellow if one of the cells in your range in empty.

    How about something like this:

    Dim rCell As Range
    For Each rCell In Range("D5:D" & lr1)
    If rCell.Value = "" Then rCell.EntireRow.Interior.ColorIndex = 6
    Next rCell
    Rule 1: Never merge cells
    Rule 2: See rule 1

    "Tomorrow I'm going to be famous. All I need is a tennis racket and a hat".

+ 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