formula to calculate percentage

percenthelp

New Member
Joined
Mar 24, 2009
Messages
2
[FONT=&quot]how to create formulas to reduce 25% of the Salaries Expenses by multiplying the Salaries Expense for each month by 75%.

i know it $ signs are involved something like $a$1 *100 +.75 i dont know for sure does anyone know an answer to this?
[/FONT]
 
Last edited:

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Put it in a different cell. Otherwise you will need VBA, which is as follows:

Code:
Sub test()
If IsNumeric(Range("A1")) Then Range("A1") = Range("A1") * 0.75
End Sub
 
Upvote 0
You're going to struggle with this, because this will create a circular reference.

If A1 contains $4,000, and you then want A1 to contain A1*75%, what exactly does this mean ?

I suggest you use Barry's formula in a different cell, for example B1, and then use Copy, Paste Special, Values to paste the result back into A1.
 
Upvote 0

Forum statistics

Threads
1,214,832
Messages
6,121,849
Members
449,051
Latest member
excelquestion515

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top