Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Eric Whittaker
 
Posts: n/a
Default Calculation within a Cell

I am trying to create cells that will make calculations for me. For example,
I want to enter the number 140, and have the cell automatically make the
calculation to 30 percent of that number. Any suggestions? Thanks.


  #2   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

You would need macro for that


Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Intersect(Range("A2"), Target) Is Nothing Then Exit Sub
Application.EnableEvents = False
Target.Value = Target.Value * 0.3
Application.EnableEvents = True
End Sub

will change whatever number is entered in A1

for information see

http://www.mvps.org/dmcritchie/excel/event.htm

--
Regards,

Peo Sjoblom


"Eric Whittaker" wrote in message
...
I am trying to create cells that will make calculations for me. For
example, I want to enter the number 140, and have the cell automatically
make the calculation to 30 percent of that number. Any suggestions? Thanks.


  #3   Report Post  
Bernard Liengme
 
Posts: n/a
Default

Or enter the number in A1 and in B1 use the formula =A1*1.30
The asterisk (star) is the multiplication symbol used by most computer
programs
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"Eric Whittaker" wrote in message
...
I am trying to create cells that will make calculations for me. For
example, I want to enter the number 140, and have the cell automatically
make the calculation to 30 percent of that number. Any suggestions? Thanks.



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
up to 7 functions? ALex Excel Worksheet Functions 10 April 12th 05 06:42 PM
How do I fill down keeping one cell calculation from changing in . WC Excel Discussion (Misc queries) 2 February 15th 05 01:57 PM
Can a Formula in Cell X modify Cell Y? alMandragor Excel Discussion (Misc queries) 7 February 10th 05 09:51 PM
inserting data from a row to a cell, when the row number is specified by a formula in a cell [email protected] New Users to Excel 2 January 6th 05 07:18 AM
VLookup resulting in a blank cell... KempensBoerke Excel Worksheet Functions 1 October 28th 04 09:57 PM


All times are GMT +1. The time now is 02:26 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"