Results 1 to 15 of 15

User form hides wrong information

Threaded View

  1. #1
    Registered User
    Join Date
    05-26-2010
    Location
    Tennessee, United States
    MS-Off Ver
    Office: Microsoft Office 2007. Home: Microsoft Office 2010
    Posts
    45

    User form hides wrong information

    I am creating a user form to hide certain options. I have coded the "OK" button to hide certain firlds depending on what I have checked. The problem is that when I click the "OK" button, it hides the wrong rows. It also hides rows when I click "OK" without anything being checked.

    The code for the "OK" button is something like:
    Private Sub Ok_Click()
    If chkOption1 = True Then
    Sheets("Sheet2").Select
    Selection.Rows("3:4").Select
    Selection.EntireRow.Hidden = True
    ElseIf chkOption2 = True Then
    Sheets("Sheet2").Select
    Selection.Rows("5:6").Select
    Selection.EntireRow.Hidden = True
    End If
    End Sub

    The rows it hides for the first click of "OK" are always numbers that end in a 3 or 4. What do I need to do to fix this?
    Last edited by EGR2317; 06-01-2010 at 09:21 AM.

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