Thread
:
Excel F9 error
View Single Post
#
4
Posted to microsoft.public.excel.worksheet.functions
Jim Cone
external usenet poster
Posts: 3,290
Excel F9 error
The formulas all have to be recalculated.
Select a problem cell, press F2 and Enter.
If that works, repeat for all #Name cells.
If you have lots of then this macro will do it for you.
Select cells before running it...
'----
Sub MakeThemWork()
Dim rcell As Range
For Each rcell In Selection.Cells
rcell.Formula = rcell.Formula
Next
End Sub
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware
"KCM Andrea"
<KCM
wrote in message
I've done that and it still does not correct the error
"Jim Cone" wrote:
Go to the Tools menu and select Add-ins.
In the displayed list Checkmark "Analysis ToolPak"
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware
"KCM Andrea" <KCM
wrote in message
I'm working with a new spreadsheet project in my company and am having an
issue. When I press F9 to update the formulas, it replaces every single
formula cell with #NAME?. What is the issue and how do I fix it.
Reply With Quote
Jim Cone
View Public Profile
Find all posts by Jim Cone