Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 90
Default need the excel formula to find 4% of 449.95

I am trying to do homework on a paper that needs to be turned in on Sunday.
Can someone please help with this formula?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,091
Default need the excel formula to find 4% of 449.95

=449.95 * 4%

That formula produces 17.998
The amount of 449.95 is multiplied (*) by 4%.

Tyro

"Kenny" wrote in message
...
I am trying to do homework on a paper that needs to be turned in on Sunday.
Can someone please help with this formula?



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default need the excel formula to find 4% of 449.95

=.04 * 449.95

If the 449.95 is in A1 =.04 * A1



Gord Dibben MS Excel MVP

On Sat, 8 Mar 2008 15:16:01 -0800, Kenny
wrote:

I am trying to do homework on a paper that needs to be turned in on Sunday.
Can someone please help with this formula?


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,091
Default need the excel formula to find 4% of 449.95

Why not multiply by 4% which is more intuitive than .04

Regards,
Tyro

"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
=.04 * 449.95

If the 449.95 is in A1 =.04 * A1



Gord Dibben MS Excel MVP

On Sat, 8 Mar 2008 15:16:01 -0800, Kenny
wrote:

I am trying to do homework on a paper that needs to be turned in on
Sunday.
Can someone please help with this formula?




  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default need the excel formula to find 4% of 449.95

Kenny, try this out. You can also replace 499.95 with a cell reference.

=SUM(499.95*0.04)


"Kenny" wrote:

I am trying to do homework on a paper that needs to be turned in on Sunday.
Can someone please help with this formula?



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,091
Default need the excel formula to find 4% of 449.95

SUM? SUM is used to sum (add) numbers as in =SUM(A1:A10000) to add 10,000
numbers. How is SUM(499.95*0.04) better than =499.95*4%? There is no SUM,
just a multiplication.

Tyro

"Todd S" <Todd wrote in message
...
Kenny, try this out. You can also replace 499.95 with a cell reference.

=SUM(499.95*0.04)


"Kenny" wrote:

I am trying to do homework on a paper that needs to be turned in on
Sunday.
Can someone please help with this formula?



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,365
Default need the excel formula to find 4% of 449.95

While not the 'tightest' formula in the world, Todd S's suggestion will work.
Like so many, he may have even been led to believe that SUM() is a REQUIRED
'statement' within a cell by the examples put forth by the writers of the
Excel (not much) Help files.

As far as Gord's suggestion of .04 vs 4%: it's a matter of personal style.
And the fact that 4% is a human convention of expressing a mathmatical value
that is actually .04 Personal style is something I've found that works its
way into many things I've participated in during my lifetime - some things
that you'd think are quite structured, such as computer programming, air
traffic control, weather radar installation and tuning, and even writing
Excel formulas :)

"Tyro" wrote:

SUM? SUM is used to sum (add) numbers as in =SUM(A1:A10000) to add 10,000
numbers. How is SUM(499.95*0.04) better than =499.95*4%? There is no SUM,
just a multiplication.

Tyro

"Todd S" <Todd wrote in message
...
Kenny, try this out. You can also replace 499.95 with a cell reference.

=SUM(499.95*0.04)


"Kenny" wrote:

I am trying to do homework on a paper that needs to be turned in on
Sunday.
Can someone please help with this formula?




  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default need the excel formula to find 4% of 449.95

I agree and suspect that most of us doing such a sum on a calculator would
input 449.95*.04 and not fumble around trying to multiply by 4%

"JLatham" wrote:

While not the 'tightest' formula in the world, Todd S's suggestion will work.
Like so many, he may have even been led to believe that SUM() is a REQUIRED
'statement' within a cell by the examples put forth by the writers of the
Excel (not much) Help files.

As far as Gord's suggestion of .04 vs 4%: it's a matter of personal style.
And the fact that 4% is a human convention of expressing a mathmatical value
that is actually .04 Personal style is something I've found that works its
way into many things I've participated in during my lifetime - some things
that you'd think are quite structured, such as computer programming, air
traffic control, weather radar installation and tuning, and even writing
Excel formulas :)

"Tyro" wrote:

SUM? SUM is used to sum (add) numbers as in =SUM(A1:A10000) to add 10,000
numbers. How is SUM(499.95*0.04) better than =499.95*4%? There is no SUM,
just a multiplication.

Tyro

"Todd S" <Todd wrote in message
...
Kenny, try this out. You can also replace 499.95 with a cell reference.

=SUM(499.95*0.04)


"Kenny" wrote:

I am trying to do homework on a paper that needs to be turned in on
Sunday.
Can someone please help with this formula?




  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default need the excel formula to find 4% of 449.95

I just learned never to trust Excel's idea of "percent".

Enter 2 in a cell and format to percent return 200%

Years ago I started entering .02 and have not stopped.

Habits die hard.


Gord

On Sat, 8 Mar 2008 23:20:00 -0800, JLatham <HelpFrom @
Jlathamsite.com.(removethis) wrote:

While not the 'tightest' formula in the world, Todd S's suggestion will work.
Like so many, he may have even been led to believe that SUM() is a REQUIRED
'statement' within a cell by the examples put forth by the writers of the
Excel (not much) Help files.

As far as Gord's suggestion of .04 vs 4%: it's a matter of personal style.
And the fact that 4% is a human convention of expressing a mathmatical value
that is actually .04 Personal style is something I've found that works its
way into many things I've participated in during my lifetime - some things
that you'd think are quite structured, such as computer programming, air
traffic control, weather radar installation and tuning, and even writing
Excel formulas :)

"Tyro" wrote:

SUM? SUM is used to sum (add) numbers as in =SUM(A1:A10000) to add 10,000
numbers. How is SUM(499.95*0.04) better than =499.95*4%? There is no SUM,
just a multiplication.

Tyro

"Todd S" <Todd wrote in message
...
Kenny, try this out. You can also replace 499.95 with a cell reference.

=SUM(499.95*0.04)


"Kenny" wrote:

I am trying to do homework on a paper that needs to be turned in on
Sunday.
Can someone please help with this formula?





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
How to find which formula in Excel sheet has an invalid reference Jerry Timm Excel Worksheet Functions 1 November 21st 06 08:00 PM
what formula is used in Excel to find percentage of value? Namrata Setting up and Configuration of Excel 1 October 31st 06 02:30 PM
In Excel, how do I insert a formula to find the 5th root of a no. Pressed Excel Worksheet Functions 1 February 18th 06 12:09 PM
Formula to compare a cell to find same value in a column in Excel Diane Briltz Excel Worksheet Functions 1 December 14th 05 12:38 AM
can't find formula bar in Excel 2003 MelvinGO New Users to Excel 2 July 25th 05 08:25 AM


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