+ Reply to Thread
Results 1 to 3 of 3

Hide an entire row - Not working

  1. #1
    Mark
    Guest

    Hide an entire row - Not working

    I am trying to use this code to hide a row. Am I using a property that
    doesn't work? I do not get any error messages... I just do not get the
    desired results.

    If MyNewArchHide = True Then
    For i = 1 To rng.Count
    If cName(i) = "Transaction Date" Then
    Set rng2 = .Range(.Cells(1, i), .Cells(2 ^ 16,
    i).End(xlUp))
    For j = rng2.Count To 2 Step -1
    If .Cells(j, i).Value > LowYear _
    And .Cells(j, StatusColumn).Value = "Archive" Then
    Rows(j).Select
    HideSelection = True
    End If
    Next j
    End If
    Next i
    End If

  2. #2
    JNW
    Guest

    RE: Hide an entire row - Not working

    Try:
    Selection.EntireColumn.Hidden = True

    "Mark" wrote:

    > I am trying to use this code to hide a row. Am I using a property that
    > doesn't work? I do not get any error messages... I just do not get the
    > desired results.
    >
    > If MyNewArchHide = True Then
    > For i = 1 To rng.Count
    > If cName(i) = "Transaction Date" Then
    > Set rng2 = .Range(.Cells(1, i), .Cells(2 ^ 16,
    > i).End(xlUp))
    > For j = rng2.Count To 2 Step -1
    > If .Cells(j, i).Value > LowYear _
    > And .Cells(j, StatusColumn).Value = "Archive" Then
    > Rows(j).Select
    > HideSelection = True
    > End If
    > Next j
    > End If
    > Next i
    > End If


  3. #3
    Dave Peterson
    Guest

    Re: Hide an entire row - Not working

    selection.entirerow.hidden = true
    ??

    or just
    rows(j).hidden = true

    (and get rid of the .select line)

    JNW wrote:
    >
    > Try:
    > Selection.EntireColumn.Hidden = True
    >
    > "Mark" wrote:
    >
    > > I am trying to use this code to hide a row. Am I using a property that
    > > doesn't work? I do not get any error messages... I just do not get the
    > > desired results.
    > >
    > > If MyNewArchHide = True Then
    > > For i = 1 To rng.Count
    > > If cName(i) = "Transaction Date" Then
    > > Set rng2 = .Range(.Cells(1, i), .Cells(2 ^ 16,
    > > i).End(xlUp))
    > > For j = rng2.Count To 2 Step -1
    > > If .Cells(j, i).Value > LowYear _
    > > And .Cells(j, StatusColumn).Value = "Archive" Then
    > > Rows(j).Select
    > > HideSelection = True
    > > End If
    > > Next j
    > > End If
    > > Next i
    > > End If


    --

    Dave Peterson

+ 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