Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Formulas don't update?


Hi!
I have a formula that simply refers to a cell with a date. Most of th
time it works fine but on occation it refuses to update and I canno
seem to find the logic. The base cell (A1) says Dec-05 the formula cel
(B1) =A1 says Nov-05. How can this be?

F9 manual Calc does not fix it nor does Tools Options Manua
Calculation
Application.ScreenUpdating = True ' does nothing
Activeworkbook.Precisionasdisplayed = True ' does nothing

The only way I have found to fix it is to edit directly into the cel
or formula bar. If I select the cell and hit F2 and enter then it wil
read OK.

Please help if you can Thank

--
Brian Matlac
-----------------------------------------------------------------------
Brian Matlack's Profile: http://www.excelforum.com/member.php...nfo&userid=350
View this thread: http://www.excelforum.com/showthread.php?threadid=49458

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,440
Default Formulas don't update?

<Application.ScreenUpdating = True ' does nothing
Activeworkbook.Precisionasdisplayed = True ' does nothing

Plus the fact that you're posting in .Programming makes me think you fire
calculations or enter formulas from VBA.
If so (or if something else happens in VBA), post your code or what you do
in the immediate window


--
Kind regards,

Niek Otten

"Brian Matlack"
wrote in message
news:Brian.Matlack.20aj2m_1135001405.1356@excelfor um-nospam.com...

Hi!
I have a formula that simply refers to a cell with a date. Most of the
time it works fine but on occation it refuses to update and I cannot
seem to find the logic. The base cell (A1) says Dec-05 the formula cell
(B1) =A1 says Nov-05. How can this be?

F9 manual Calc does not fix it nor does Tools Options Manual
Calculation
Application.ScreenUpdating = True ' does nothing
Activeworkbook.Precisionasdisplayed = True ' does nothing

The only way I have found to fix it is to edit directly into the cell
or formula bar. If I select the cell and hit F2 and enter then it will
read OK.

Please help if you can Thanks


--
Brian Matlack
------------------------------------------------------------------------
Brian Matlack's Profile:
http://www.excelforum.com/member.php...fo&userid=3508
View this thread: http://www.excelforum.com/showthread...hreadid=494580



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Formulas don't update?


Niek:
Actually I am pretty much a novice when it comes to VBA. All I do is
try to stick to simple stuff like copying ranges navigating the sheet
and allowing for user input of data. All of the work is done with
formulas.
The problem I am having may have nothing to do with VBA. I do copy and
paste a great many formulas in VBA on this spreadsheet both in copy
selection and paste special values [ Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _ :=False, Transpose:=False] and in copying a range to a
range [Range("list3").Value = Range("list2").Value
Range("list5").Value = Range("list4").Value]
The formulas that are causing me problems are not being copied and
pasted they are stationary cells no columns or rows are added or
deleted. I just don't know what would cause a formula to update and
sometimes not even when you do a manual calc to force it to update.
I know this is pretty vague and I appoligize I hope you can help stear
me in the right direction to look for answers
Thanks for your help!!


--
Brian Matlack
------------------------------------------------------------------------
Brian Matlack's Profile: http://www.excelforum.com/member.php...fo&userid=3508
View this thread: http://www.excelforum.com/showthread...hreadid=494580

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,440
Default Formulas don't update?

Hi Brian,

Try rebuilding the dependency tree with CTRL+ALT+SHIFT+F9 (only last few
versions of Excel)
Almost the equivalent of that (with a one-worksheet workbook) is to search
and replace all "=" with"="

Be aware that the Calculation mode is an Excel-wide setting; if you had
another workbook open when opening the problem workbook, the setting may not
be what you saved it with.
Other problems with recalculation can occur with User Defined Functions
(which I don't suppose you have) and with older versions of Excel, notably
Excel 97 version 5.0a

--
Kind regards,

Niek Otten

"Brian Matlack"
wrote in message
news:Brian.Matlack.20armz_1135012501.2375@excelfor um-nospam.com...

Niek:
Actually I am pretty much a novice when it comes to VBA. All I do is
try to stick to simple stuff like copying ranges navigating the sheet
and allowing for user input of data. All of the work is done with
formulas.
The problem I am having may have nothing to do with VBA. I do copy and
paste a great many formulas in VBA on this spreadsheet both in copy
selection and paste special values [ Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _ :=False, Transpose:=False] and in copying a range to a
range [Range("list3").Value = Range("list2").Value
Range("list5").Value = Range("list4").Value]
The formulas that are causing me problems are not being copied and
pasted they are stationary cells no columns or rows are added or
deleted. I just don't know what would cause a formula to update and
sometimes not even when you do a manual calc to force it to update.
I know this is pretty vague and I appoligize I hope you can help stear
me in the right direction to look for answers
Thanks for your help!!


--
Brian Matlack
------------------------------------------------------------------------
Brian Matlack's Profile:
http://www.excelforum.com/member.php...fo&userid=3508
View this thread: http://www.excelforum.com/showthread...hreadid=494580



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Formulas don't update?


Niek:
Rebuilding the dependancy tree did it. (CTRL+ALT+SHIFT+F9) Thanks fo
the help!

--
Brian Matlac
-----------------------------------------------------------------------
Brian Matlack's Profile: http://www.excelforum.com/member.php...nfo&userid=350
View this thread: http://www.excelforum.com/showthread.php?threadid=49458



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,440
Default Formulas don't update?

Thanks for the feedback. I'm always a bit hesitant to advise this, but there
are a surprising number of occasions where it seems to solve a problem. So
your response is encouraging me to suggest using this, although I realize
that often something else is wrong.

--
Kind regards,

Niek Otten

"Brian Matlack"
wrote in message
news:Brian.Matlack.20ceny_1135089002.9976@excelfor um-nospam.com...

Niek:
Rebuilding the dependancy tree did it. (CTRL+ALT+SHIFT+F9) Thanks for
the help!!


--
Brian Matlack
------------------------------------------------------------------------
Brian Matlack's Profile:
http://www.excelforum.com/member.php...fo&userid=3508
View this thread: http://www.excelforum.com/showthread...hreadid=494580



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Formulas don't update First Aid Computing[_2_] Excel Discussion (Misc queries) 2 March 28th 09 04:08 PM
Formulas don't update. First Aid Computing[_2_] Excel Discussion (Misc queries) 1 March 28th 09 05:48 AM
Update Formulas RedFive Excel Worksheet Functions 3 November 4th 08 07:10 PM
Formulas will not update! cerpintax Excel Discussion (Misc queries) 3 June 14th 06 12:30 PM
Update formulas ten Excel Programming 1 August 7th 03 02:00 PM


All times are GMT +1. The time now is 04:03 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"