Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default Manual Input/Calculation in Same Cell

Hello,

I've programmed my worksheet to automatically calculate a number but
sometimes we have to enter a manual number. Is it possible to input a manual
number yet still be able to keep the programmed calculation for the same cell?

Jean9


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default Manual Input/Calculation in Same Cell

Use two cells:

Say in Z100 we usually have =A1/B1, but sometimes we want a manual value
instead. In Z100 enter:

=IF(B9="",A1/B1,B9)

so if B9 is empty, the formula is used. If B9 has a value, the value is used.
--
Gary''s Student - gsnu200753


"Jean9" wrote:

Hello,

I've programmed my worksheet to automatically calculate a number but
sometimes we have to enter a manual number. Is it possible to input a manual
number yet still be able to keep the programmed calculation for the same cell?

Jean9


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default Manual Input/Calculation in Same Cell

Hi Gary,

I've tried your suggestion and when entering the manual number it works but
when no manual number, the calculation does not work at all. What I'm I
doing wrong?

Jean9

"Gary''s Student" wrote:

Use two cells:

Say in Z100 we usually have =A1/B1, but sometimes we want a manual value
instead. In Z100 enter:

=IF(B9="",A1/B1,B9)

so if B9 is empty, the formula is used. If B9 has a value, the value is used.
--
Gary''s Student - gsnu200753


"Jean9" wrote:

Hello,

I've programmed my worksheet to automatically calculate a number but
sometimes we have to enter a manual number. Is it possible to input a manual
number yet still be able to keep the programmed calculation for the same cell?

Jean9


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,624
Default Manual Input/Calculation in Same Cell

One possibility: You're "clearing" the manual number by using the space
bar. That leaves a space character in the cell and the comparison with
the null string fails.

If that's the case, you can use

=IF(ISNUMBER(B9),B9,A1/B1)






In article ,
Jean9 wrote:

I've tried your suggestion and when entering the manual number it works but
when no manual number, the calculation does not work at all. What I'm I
doing wrong?

Jean9

"Gary''s Student" wrote:

Use two cells:

Say in Z100 we usually have =A1/B1, but sometimes we want a manual value
instead. In Z100 enter:

=IF(B9="",A1/B1,B9)

so if B9 is empty, the formula is used. If B9 has a value, the value is
used.

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
Cell Reference VS. Manual Input? K-Roq Excel Worksheet Functions 2 September 26th 07 07:57 PM
Calculation - Automatic and Manual shepcon Excel Discussion (Misc queries) 1 July 17th 07 05:14 PM
Automatic/Manual Calculation PA New Users to Excel 4 September 8th 06 04:04 PM
Calculation set as Manual Dan. Excel Discussion (Misc queries) 1 February 14th 06 04:30 PM
Manual / Automatic Calculation Adam1 Chicago Excel Discussion (Misc queries) 1 February 6th 06 10:12 PM


All times are GMT +1. The time now is 12:34 PM.

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

About Us

"It's about Microsoft Excel"