Showing posts with label Ready To Use Excel Formulas :how to Calculate percentage distribution. Show all posts
Showing posts with label Ready To Use Excel Formulas :how to Calculate percentage distribution. Show all posts

Thursday, 11 May 2017

Ready to use Excel Formula: Applying a Percent Increase or Decrease to Values



A common task for an Excel analyst is to apply a percentage increase or decrease to a given number. For instance, when applying a price increase to a product, you would typically raise the original price by a certain percent. When giving a customer a discount, you would decrease that customer’s rate by a certain percent.

The screenshot below illustrates how to apply a percent increase and decrease using a simple formula. In cell E5, you apply a 10 percent price increase to Product A. In Cell E9, you give a 20 percent discount to Customer A


% decrease and increase using simple formula


How it works

To increase a number by a percentage amount, multiply the original amount by 1+ the percent of the increase. In the example in Screenshot, Product A is getting a 10 percent increase. So you first add 1 to the 10 percent, which gives you 110 percent. You then multiply the original price of 100 by 110 percent. This calculates to the new price of 110.

To decrease a number by a percentage amount, multiply the original amount by 1- the percent of the increase. In the example in Screenshot, Customer A is getting a 20 percent discount. So you first subtract 20 percent from 1, which gives you 80 percent. You then multiply the original 1,000 cost per service by 80 percent. This calculates to the new rate of 800.

Note the use of parentheses in the formulas. By default, Excel’s order of operations states that multiplication must be done before addition or subtraction. But if you let that happen, you would get an erroneous result. Wrapping the second part of the formula in parentheses ensures that Excel performs the multiplication last.





Wednesday, 3 May 2017

Ready to use Excel formula: Calculating a Running Total




Some organizations like to see a running total as a mechanism to analyze the changes
in a metric as a period of time progresses. Screen shot illustrates a running total of units
sold for January through December. The formula used in cell D3 is copied down for
each month:


=SUM($C$3:C3)




How it works

In this formula, you use the SUM function to add all the units from cell C3 to the
current row. The trick to this formula is the absolute reference ($C$3). Placing an
absolute reference in the reference for the first value of the year locks that value down.
Locking the value down ensures that as the formula is copied down, the SUM function
always captures and adds the units from the very first value to the value on the current
row.



Monday, 1 May 2017

Ready To Use Excel Formulas :how to Calculate percentage distribution


Percent distribution is a measure of how a metric (such as total revenue) is distributed among the component parts that make up the total. As you can see in Figure 2-5, the calculation is relatively simple. You divide each component part by the total. This example has a cell that contains Total revenue (cell C9). You then divide each region’s revenue by the total to get a percent distribution for each region.

Revenue across regions


How it works

This formula doesn’t have a lot to it. You’re simply using cell references to divide each component value by the total. The one thing to note is that the cell reference to the Total is entered as an absolute reference ($C$9). Using the dollar symbols locks the reference in place, ensuring that the cell reference pointing to Total does not adjust as you copy the formula down.


Alternative: Percent distribution without a dedicated

Total cell

You don’t have to dedicate a separate cell to an actual Total value. You can simply
calculate Total on the fly within the percent distribution formula. Figure 2-6
demonstrates how you can use the SUM function in place of a cell dedicated to
holding a Total. The SUM function adds together any numbers you pass to it.
Again, note the use of absolute references in the SUM function. Using absolute
references ensures that the SUM range stays locked as you copy the formula down:

=C3/SUM($C$3:$C$6)


% distribution