Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8040251
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T03:50:14+00:00 2026-06-05T03:50:14+00:00

I have an excel sheet that I am attempting to have a scroll bar

  • 0

I have an excel sheet that I am attempting to have a scroll bar show only 10 of the possible hundreds of items on a list. I created a scroll bar, had it reference a field, for calculations. Each field that the scroll bar interacts with is referenced off the field as well. So I can’t imagine why it’s not working.

What is happening is that when I scroll the bar up and down the text to the right of it doesn’t move. I’d like to know if it is my computer, or not. If it is my computer what would I need to do to make it work? I use VBA and I may of accidently disabled something to allow the scrolling to not work, but I don’t know.

Can someone help please?

Here is the worksheet in question.

https://dl.dropbox.com/u/3327208/Excel/scrollnotworking.xlsx

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T03:50:15+00:00Added an answer on June 5, 2026 at 3:50 am

    Your calculation is set to Manual.

    Do this. Under the

    Formulas Tab click on Calculation Options and then on Automatic

    Now try it

    enter image description here

    FOLLOWUP

    sweet perfect, is there a way in VBA to make this happen? I have to go through my code and find out if there is a spot where makes this as Manual… because I think there is. – Matt Ridge 1 min ago

    There are mainly two reasons why the calculation switches to manual via VBA

    1) You set it MANUAL and then forget to set it back. For example

    Sub Sample()
        Application.Calculation = xlCalculationManual
    
        '~~> Rest of your code
    End Sub
    

    2) You set it to MANUAL in the beginning and set it AUTOMATIC in the end but it still remains MANUAL. This primarily happens because you didn’t include proper Error Handling because of which the code exits prematurely from the procedure. See this example

    The wrong way

    Sub Sample()
        Application.Calculation = xlCalculationManual
    
        '~~> Rest of your code
    
        Application.Calculation = xlCalculationAutomatic
    End Sub
    

    The preferred way

    Sub Sample()
        On Error GoTo Whoa
    
        Application.Calculation = xlCalculationManual
    
        '~~> Rest of your code
    
    Letscontinue:
        Application.Calculation = xlCalculationAutomatic
        Exit Sub
    Whoa:
        MsgBox Err.Description
        Resume Letscontinue
    End Sub
    

    Note: If you want, You can also store the current state of Calculation and set it back at the end of the code if you want to.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a php script that reads an excel sheet of thousands of
I have created an Excel Sheet that does some lookups to format data that
I have a dropdown list in my Excel sheet that contains a series of
I have an excel sheet that I want to load into a datatable withe
I have an excel sheet that is organized as follows: COL1 COL2 1 30
I have the this code that will create excel file and work sheet then
I have created Excel Sheet using Java program. It works fine. My problem is,
Hai i have an excel sheet, in that i need to calculate some values
I have an excel sheet that is loaded with a dynamic result set of
I have an EXCEL sheet.it has various form-fields that are named as smrBgm133GallonsGross/ smrBgm167GallonsGross

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.