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

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.

Scott Huish

MrExcel MVP
Joined
Mar 17, 2004
Messages
19,961
Office Version
  1. 365
Platform
  1. Windows
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

Gerald Higgins

Well-known Member
Joined
Mar 26, 2007
Messages
9,258
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,191,632
Messages
5,987,780
Members
440,110
Latest member
albertod8

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
Top