Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 14
Default Is there any programming tool which can calculate single worksheet

Using Excel 2007 on Windows 7

I know how to change a formula to a static figure by pressing F9. This is
great for a single cell but is there something that could be used in a range.

For example:

Single Cell - =sum(A1:A3)
Cell shows 51
Select the Cell in the formula bar and press F9 changes the =sum(A1:A3) to 51.

What I would Like to do for a given Month is be able to change formulas to
static figures:

For Example:
for each month there are three calculations. once the month is completed I
would like to stop the month from recalculating as the input cells may change
but only for the future months.

Has anyone come across this before?

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Is there any programming tool which can calculate single worksheet

The below code will check whether the date mentioned in cell A2 is less than
current date and if so it will convert the formula cell D2 to its value..Try
the below and feedback.

Select the sheet tab which you want to work with. Right click the sheet tab
and click on 'View Code'. This will launch VBE. Paste the below code to the
right blank portion. Get back to to workbook and try out.

Private Sub Worksheet_Activate()
If Date CDate(Range("A2")) And Range("A2") 0 Then _
Range("D2") = Range("D2").Value
End Sub

If this post helps click Yes
---------------
Jacob Skaria


"Gillian" wrote:

Using Excel 2007 on Windows 7

I know how to change a formula to a static figure by pressing F9. This is
great for a single cell but is there something that could be used in a range.

For example:

Single Cell - =sum(A1:A3)
Cell shows 51
Select the Cell in the formula bar and press F9 changes the =sum(A1:A3) to 51.

What I would Like to do for a given Month is be able to change formulas to
static figures:

For Example:
for each month there are three calculations. once the month is completed I
would like to stop the month from recalculating as the input cells may change
but only for the future months.

Has anyone come across this before?

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Is there any programming tool which can calculate single worksheet

Copy
Edit/ Paste Special/ Values
--
David Biddulph

"Gillian" wrote in message
...
Using Excel 2007 on Windows 7

I know how to change a formula to a static figure by pressing F9. This is
great for a single cell but is there something that could be used in a
range.

For example:

Single Cell - =sum(A1:A3)
Cell shows 51
Select the Cell in the formula bar and press F9 changes the =sum(A1:A3) to
51.

What I would Like to do for a given Month is be able to change formulas to
static figures:

For Example:
for each month there are three calculations. once the month is completed
I
would like to stop the month from recalculating as the input cells may
change
but only for the future months.

Has anyone come across this before?



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 14
Default Is there any programming tool which can calculate single works

Thanks David,

Just what I wanted it to do, You've save me a lot of headaches.

:-)

"David Biddulph" wrote:

Copy
Edit/ Paste Special/ Values
--
David Biddulph

"Gillian" wrote in message
...
Using Excel 2007 on Windows 7

I know how to change a formula to a static figure by pressing F9. This is
great for a single cell but is there something that could be used in a
range.

For example:

Single Cell - =sum(A1:A3)
Cell shows 51
Select the Cell in the formula bar and press F9 changes the =sum(A1:A3) to
51.

What I would Like to do for a given Month is be able to change formulas to
static figures:

For Example:
for each month there are three calculations. once the month is completed
I
would like to stop the month from recalculating as the input cells may
change
but only for the future months.

Has anyone come across this before?




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
Worksheet set-up/programming Cathy Excel Worksheet Functions 0 July 30th 09 01:36 PM
Is it possible to Calculate a single worksheet at a time? Henry Excel Discussion (Misc queries) 1 October 14th 08 02:03 PM
WORKSHEET FUNCTION or PROGRAMMING. rml Excel Worksheet Functions 8 November 11th 06 08:55 PM
Help programming new chart into a new worksheet aj Charts and Charting in Excel 0 March 22nd 06 03:45 PM
is it possible to use F9 to manually calculate in a single sheet or single workbook? Hersbt Excel Discussion (Misc queries) 2 December 29th 04 04:42 PM


All times are GMT +1. The time now is 12:14 AM.

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"