53
12
When clicking into a cell of a Excel 2013 sheet, the green border of the cell is animated while moving from the current cell to the new one.
This is really disturbing. How can I disable this animation?
53
12
When clicking into a cell of a Excel 2013 sheet, the green border of the cell is animated while moving from the current cell to the new one.
This is really disturbing. How can I disable this animation?
52
There is a registry setting that allows you to disable all animations across Office 2013 (thus not affecting other programs). It is explained in simple terms here: [Tip] Improve Microsoft Office 2013 Performance by Disabling Unnecessary Animations. There's a download at the end of the post with the corresponding .reg
files to enable or disable animations; just double click on the "disable animations" one.
In summary:
HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Common\Graphics
DisableAnimations
in that key and set its value to 1There's no way to selectively disable some of Office 2013 animations; it's an all-or-nothing proposition. sotong's answer to this question disables all animations across Windows.
EDIT
For those who don't have access to the regedit
UI due to user privileges, this can also be done from the command line. Use (Win)+R, run cmd then paste in for Office 2013:
reg add HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Common\Graphics ^
/v DisableAnimations /t REG_DWORD /d 1
For Office 2016:
reg add HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Common\Graphics ^
/v DisableAnimations /t REG_DWORD /d 1
(all on one line).
Nice tip. Worked for me too +1 – Murta – 2014-07-17T20:44:56.253
3I'm on a computer where I'm blocked from using regedit. Solved by running reg add "HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Common\Graphics" /v DisableAnimations /t REG_DWORD /d 1
from the command line. Does the same thing but without the regedit UI. – ivarni – 2015-06-23T11:14:35.737
@ivarni I would consider that worthy of a new answer, or at least promotion to part of the main answer. Very helpful. – Joe – 2015-07-22T21:19:22.580
1Thanks for the answer. But I can't see the folder "Graphics" in my registry (Win8), but would be the better solution for the issue. – FiveO – 2013-04-04T14:42:29.573
You may have to create it - I don't remember how it was. Have you tried it? Does it work? – s_a – 2013-04-04T15:25:28.657
2Yes, after adding the key Graphics
and then the DWORD DisableAnimations
the Animations are gone. So this is even the better answer for that issue. Thanks – FiveO – 2013-04-05T08:21:20.663
FYI I just ran the .reg file from the link I posted on a Win8 x64/Office 2013 x86 machine and it worked. – s_a – 2013-04-05T14:31:19.630
Is the DWORD named DisableAnimations
(plural) or DisableAnimation
(singular)? See http://www.howtogeek.com/161826/how-to-disable-the-typing-animation-feature-in-office-2013/.
I have it in plural. According to the person who first published the fix (@rafael-rivera), it's plural. (http://withinwindows.com/2012/07/21/disabling-animations-in-office-2013)
– s_a – 2014-02-25T20:26:25.9778
Another way to turn off animations in Office 2013, which does NOT involve going into the registry, is as follows (quoted from Excel 2013 built-in help):
"Turn off Office animations
Office 2013 is the first release to use hardware acceleration throughout the user experience to deliver beautiful, fluid animations. But if you use your computer without a display or just prefer to block unnecessary animations, you have the choice to turn them off.
1.Open the Ease of Access Center (shown below) by pressing the Windows logo key + U.
2.Under Explore all settings, click Use the computer without a display.
3.Under Adjust time limits and flashing visuals, click Turn off all unnecessary animations (when possible).
4.Click OK."
This assumes Hardware Acceleration is only used for the animations. I'm concerned this setting might affect other aspects too. – Richard Le Mesurier – 2014-10-02T15:45:33.527
Certainly a great alternative, as it doesn't involve admin authority and can be easily done in a workplace setting. – Crosscounter – 2015-06-23T16:36:22.807
6
You can turn off the animation by:
Control panel > System and security > System > Advanced system settings (in upper-left side) > Advanced tab > Settings in Performance box > Visual effects tab:
Uncheck the "Animate controls and elements inside windows."
Remark from user s_a: This disables all animations across windows (which is in my opinion not a bad thing) – FiveO – 2013-04-04T14:39:24.543
2
Hate that as well.
It appears to be a global setting unfortunately. You can disable it by going to Control Panel, Ease of Access Center, then click Make it easier to focus on tasks, and tick Turn off unnecessary animations. It will disable many other Windows animations though.
Please notice it is NOT a global setting (though you can of course disable all animations in windows). – s_a – 2013-04-05T14:32:51.373
1
A simpler solution:
Excel 2013> Options> Advanced > Display> DISABLE Hardware Graphics Acceleration.
2That's not an appropriate solution for disabling a single animation. – DanteTheEgregore – 2013-10-06T05:18:02.857
1I've had this flag set for ages and this did not disable the animation described in the question. – RomanSt – 2013-12-12T14:59:07.913
0
Copy the following text in the notepad and rename the file as .reg and then open the and merge the entry.
----------------- Copy text below ------------
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Common\Graphics] "DisableAnimations"=dword:00000001
-1
In Windows 7, click on the Start icon and type this: "turn off unnecessary animations"
Then check the box by "turn off unnecessary animations" on the following screen.
7I instantly wanted to disable this when I experienced it. – vaughan – 2013-10-24T08:14:02.497