#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
ChristyB
 
Posts: n/a
Default % calculations

I am looking to compare actuals to budgeted amounts.
The actuals are real $. The amount budgeted was $0.00. I need the
percentage over. What formula can I use to get the % over budget in Excel?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Roger Govier
 
Posts: n/a
Default % calculations

Hi Christy

Assuming your real data is in A1 and your budget in B1 then enter in C1
=IF(B1<1,"Not Applicable",A1/B1)
Format Cell C1 as Percentage, copy down column C as far as required
If the Budget is 0, you cannot have a percentage increase, as this would
be infinity (and Excel would throw up a #DIV/0 error), hence the If test
at the beginning of the formula.

--
Regards

Roger Govier


"ChristyB" wrote in message
...
I am looking to compare actuals to budgeted amounts.
The actuals are real $. The amount budgeted was $0.00. I need the
percentage over. What formula can I use to get the % over budget in
Excel?



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
 
Posts: n/a
Default % calculations

"Roger Govier" wrote:
Assuming your real data is in A1 and your budget in B1
then enter in C1 =IF(B1<1,"Not Applicable",A1/B1)


I think the condition should be "B1 <= 0".
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bob Phillips
 
Posts: n/a
Default % calculations

=actual/budget

formatted as percentage, or maybe

=actual/budget-1

to get just the percentage over

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"ChristyB" wrote in message
...
I am looking to compare actuals to budgeted amounts.
The actuals are real $. The amount budgeted was $0.00. I need the
percentage over. What formula can I use to get the % over budget in

Excel?


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
 
Posts: n/a
Default % calculations

"ChristyB" wrote:
The actuals are real $. The amount budgeted was $0.00.
I need the percentage over. What formula can I use to get
the % over budget in Excel?


As you probably, mathematically there is no answer. But that
does not stop people from wanting a "reasonable" result to
put into presentations.

The choice is arbitrary and subjective. There is no right or
wrong. Do you want a blank? Do you want a constant, like
100%? Or do you want a percentage that scales by the
amount commensurate with the size of the budget or
"typical" budget item? (Most people prefer a blank or a
number, not words like "not applicable" or "NA".)

Some formulations of each:

=if(B1<=0, "", A1/B1 - 1)
=if(B1<=0, 100%, A1/B1 - 1)
=if(B1<=0, A1, A1/B1 - 1)
=if(B1<=0, round(A1/1000,0), A1/B1 - 1)

The latter is a multiple of 100% times the rounded number
of $1000 increments. Thus, 100% if A1 is $500-$1499
and 200% if A1 is $1500-$2499.

Note: Using "<=" is called "defensive programming". You
might prefer "B1=0", especially if you know the budget
value is never less than zero ;-).


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
Calculations based on PivotTable information jerry Excel Discussion (Misc queries) 0 October 3rd 05 07:25 PM
looping through a set of calculations Anand Excel Worksheet Functions 2 September 14th 05 07:12 PM
Calculations crossing multiple sheets Stephen McArthu Excel Discussion (Misc queries) 4 June 6th 05 04:35 PM
Calculations too long KRAMER Excel Worksheet Functions 1 May 18th 05 01:47 PM
time interval calculations in excel Krishna Excel Discussion (Misc queries) 6 April 8th 05 02:57 PM


All times are GMT +1. The time now is 06:21 AM.

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"