Results 1 to 4 of 4

Thread: [RESOLVED] Excel Userform scrollbar to show data

  1. #1

    Thread Starter
    New Member
    Join Date
    Jun 2004
    Posts
    10

    Resolved [RESOLVED] Excel Userform scrollbar to show data

    I have 5, TextBoxes 1- 5 that post their data to Columns A-E on Worksheet 1
    I need to see the data from the workbook in Columns A-E presented in the UserForm TextBoxes 1- 5 as I scroll the ScrollBar Up & down.
    Hope this is clear.

    Thanks

  2. #2
    PowerPoster
    Join Date
    Dec 2004
    Posts
    25,618

    Re: Excel Userform scrollbar to show data

    try like
    vb Code:
    1. Private Sub ScrollBar1_Change()
    2. r = ScrollBar1.Value
    3. For j = 1 To 5
    4.     Me.Controls("TextBox" & j) = Cells(r, j)
    5. Next
    6. End Sub
    you will need to set properties for scrollbar to prevent going out of range, also error handling to prevent 0 from causing error
    you may also want a textbox or label to show the current row being displayed
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  3. #3
    Discovering Life Siddharth Rout's Avatar
    Join Date
    Feb 2005
    Location
    Mumbai, India
    Posts
    12,001

    Re: Excel Userform scrollbar to show data

    Simora, check the link in my signature for scrollbars...
    A good exercise for the Heart is to bend down and help another up...
    Please Mark your Thread "Resolved", if the query is solved


    MyGear:
    ★ CPU ★ Ryzen 5 5800X
    ★ GPU ★ NVIDIA GeForce RTX 3080 TI Founder Edition
    ★ RAM ★ G. Skill Trident Z RGB 32GB 3600MHz
    ★ MB ★ ASUS TUF GAMING X570 (WI-FI) ATX Gaming
    ★ Storage ★ SSD SB-ROCKET-1TB + SEAGATE 2TB Barracuda IHD
    ★ Cooling ★ NOCTUA NH-D15 CHROMAX BLACK 140mm + 10 of Noctua NF-F12 PWM
    ★ PSU ★ ANTEC HCG-1000-EXTREME 1000 Watt 80 Plus Gold Fully Modular PSU
    ★ Case ★ LIAN LI PC-O11 DYNAMIC XL ROG (BLACK) (G99.O11DXL-X)
    ★ Monitor ★ LG Ultragear 27" 240Hz Gaming Monitor
    ★ Keyboard ★ TVS Electronics Gold Keyboard
    ★ Mouse ★ Logitech G502 Hero

  4. #4

    Thread Starter
    New Member
    Join Date
    Jun 2004
    Posts
    10

    Re: Excel Userform scrollbar to show data

    Thanks for the ideas.
    I Used something like ths


    Code:
    Private Sub ScrollBar1_Change() 
        Dim row As Long 
    
    row = ScrLng(Me.ScrollBar1.Value) 
        With wks 
            Me.TextBox1.Text = .Cells(row, 1) 
            Me.TextBox2.Text = .Cells(row, 2) 
    
           '          etc   etc
        
         End With 
    End Sub 
     *******************************
    Private Sub UserForm_Initialize() 
        Set wks = Worksheets("Sheet1") 
         
        row_beginning = 2 
        row_ending = wks.Cells(row_beginning, 1).End(xlDown).row 
         
        With Me.ScrollBar1 
            .Value = row_beginning 
            .Min = row_beginning 
            .Max = row_ending 
            .LargeChange = 1 
            .SmallChange = 1 
        End With 
        
       Call ScrollBar1_Change 
    
    End Sub

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width