+ Reply to Thread
Results 1 to 2 of 2

Excel program:using pattern texture

  1. #1
    gill santiago
    Guest

    Excel program:using pattern texture

    How do I format 1000 lines odd or even cell rows simultaneously using pattern
    texture, i can do the individual rows to format using pattern texture but not
    100 or 1000 lines

  2. #2
    Chip Pearson
    Guest

    re: Excel program:using pattern texture

    Try something like the following

    Dim LastRow As Long
    Dim RowNdx As Long

    LastRow = Cells(Rows.Count, "A").End(xlUp).Row
    For RowNdx = 1 To LastRow Step 2
    Rows(RowNdx).Interior.ColorIndex = 6
    Next RowNdx



    --
    Cordially,
    Chip Pearson
    Microsoft MVP - Excel
    Pearson Software Consulting, LLC
    www.cpearson.com



    "gill santiago" <gill [email protected]> wrote
    in message
    news:[email protected]...
    > How do I format 1000 lines odd or even cell rows simultaneously
    > using pattern
    > texture, i can do the individual rows to format using pattern
    > texture but not
    > 100 or 1000 lines




+ 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