Vertical Scroll not working. Excel -
i have excel sheet attempting have scroll bar show 10 of possible hundreds of items on list. created scroll bar, had reference field, calculations. each field scroll bar interacts referenced off field well. can't imagine why it's not working.
what happening when scroll bar , down text right of doesn't move. i'd know if computer, or not. if computer need make work? use vba , may of accidently disabled allow scrolling not work, don't know.
can please?
here worksheet in question.
https://dl.dropbox.com/u/3327208/excel/scrollnotworking.xlsx
your calculation set manual.
do this. under
formulas tab click on calculation options , on automatic
now try it

followup
sweet perfect, there way in vba make happen? have go through code , find out if there spot makes manual... because think there is. – matt ridge 1 min ago
there 2 reasons why calculation switches manual via vba
1) set manual , forget set back. example
sub sample() application.calculation = xlcalculationmanual '~~> rest of code end sub 2) set manual in beginning , set automatic in end still remains manual. happens because didn't include proper error handling because of code exits prematurely procedure. see example
the wrong way
sub sample() application.calculation = xlcalculationmanual '~~> rest of code application.calculation = xlcalculationautomatic end sub the preferred way
sub sample() on error goto whoa application.calculation = xlcalculationmanual '~~> rest of code letscontinue: application.calculation = xlcalculationautomatic exit sub whoa: msgbox err.description resume letscontinue end sub note: if want, can store current state of calculation , set @ end of code if want to.
Comments
Post a Comment