Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm working on a spreadsheet, and I want a cell to automatically calculate
the number I put in by a predetermined number. So, I put 2 in the cell, I want it to multiply by 27 and put the total in the cell. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Don't. Use another cell with a formula. I can't think of any good reason to do this what Excel wasn't designed to do.
Of course it can be done using VBA, but why should you? -- Kind regards, Niek Otten "KW" wrote in message ... I'm working on a spreadsheet, and I want a cell to automatically calculate the number I put in by a predetermined number. So, I put 2 in the cell, I want it to multiply by 27 and put the total in the cell. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you intend to type the number into cell A1, then in B1 enter this
formula: =IF(A1="","",A1*27) This will show a blank if A1 is empty, otherwise it will give 27 times whatever is typed into A1. Hope this helps. Pete |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
complex calculations | Excel Discussion (Misc queries) | |||
Calculations based on PivotTable information | Excel Discussion (Misc queries) | |||
looping through a set of calculations | Excel Worksheet Functions | |||
Calculations crossing multiple sheets | Excel Discussion (Misc queries) | |||
time interval calculations in excel | Excel Discussion (Misc queries) |