The Computer Oracle

Disable Excel 2013 cell animation

--------------------------------------------------
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzle Game Looping

--

Chapters
00:00 Disable Excel 2013 Cell Animation
00:19 Answer 1 Score 2
00:40 Answer 2 Score 6
01:03 Accepted Answer Score 54
02:24 Answer 4 Score 1
02:36 Thank you

--

Full question
https://superuser.com/questions/547832/d...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#microsoftexcel2013 #microsoftoffice2013

#avk47



ACCEPTED ANSWER

Score 54


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:

  • create the following key in the registry if it does not exist yet: HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Common\Graphics
  • create a new DWORD DisableAnimations in that key and set its value to 1

There'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).




ANSWER 2

Score 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."




ANSWER 3

Score 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.




ANSWER 4

Score 1


A simpler solution:

Excel 2013> Options> Advanced > Display> DISABLE Hardware Graphics Acceleration.