View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Training Goddess Training Goddess is offline
external usenet poster
 
Posts: 15
Default Excel 2003 - Toggle formulae display ON/OFF on worksheet

I've created a macro to do this, but I was sure that there was a shortcut key
already in Excel 2003 to do this. Here's how my macro looks:

Sub ToggleFormulaOnOff()
FormulaStatus = ActiveWindow.DisplayFormulas
ActiveWindow.DisplayFormulas = Not FormulaStatus
End Sub

Does anyone know the existing shortcut?
Thanks in advance!

Cheers
Training Goddess