#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 52
Default Formulas

I need a formula that will do this:
Budget vs Actual...If Actual column is 10% more then budget column show
that value
--
jk
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,574
Default Formulas

=IF(Actual=Budget*1.10,Actual,Budget)

Example:

Actual is in A1 and Budget is in B1, so: =IF(A1=B1*1.1,A1,B1) (assumes if
Actual is not = to B1*1.1, you want B1 to appear instead. Otherwise replace
B1 with "": =IF(A1=B1*1.1,A1,"")

Dave
--
Brevity is the soul of wit.


"Jill" wrote:

I need a formula that will do this:
Budget vs Actual...If Actual column is 10% more then budget column show
that value
--
jk

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 459
Default Formulas

Jill wrote:
I need a formula that will do this:
Budget vs Actual...If Actual column is 10% more then budget column
show that value



If Budget column is B and Actual is C, you could use something like this:

=IF((C1-B1)/C110%,(C1-B1)/C1,"OK")

this will display OK if Actual column is under 10% then Budget column;
instead you could use:

=IF((C1-B1)/C110%,(C1-B1)/C1,"-")

this will display "-" (without quotes) if Actual column is under 10% then
Budget column; instead you could use:

=IF((C1-B1)/C110%,(C1-B1)/C1,"")

this will display a blank if Actual column is under 10% then Budget column.

--
Hope I helped you.

Thanks in advance for your feedback.

Ciao

Franz Verga from Italy


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 52
Default Formulas

Thanks but I need it to look like this in the report
act budget Var
10 10
200 20 90%
300 400

thanks
--
jk


"Dave F" wrote:

=IF(Actual=Budget*1.10,Actual,Budget)

Example:

Actual is in A1 and Budget is in B1, so: =IF(A1=B1*1.1,A1,B1) (assumes if
Actual is not = to B1*1.1, you want B1 to appear instead. Otherwise replace
B1 with "": =IF(A1=B1*1.1,A1,"")

Dave
--
Brevity is the soul of wit.


"Jill" wrote:

I need a formula that will do this:
Budget vs Actual...If Actual column is 10% more then budget column show
that value
--
jk

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 change column letters to correct ones in many formulas automatically? Dmitry Kopnichev Links and Linking in Excel 7 October 13th 05 09:52 PM
how can i get formulas in excel to copy and paste? bman Excel Worksheet Functions 1 October 3rd 05 04:15 PM
How to make Excel run limited number of formulas on a given worksh John Excel Discussion (Misc queries) 0 January 12th 05 04:29 PM
Way to make Excel only run certain formulas on a worksheet? jrusso Excel Discussion (Misc queries) 0 January 12th 05 04:23 PM
calculating formulas for all workbooks in a folder Chad Excel Worksheet Functions 3 November 13th 04 05:22 PM


All times are GMT +1. The time now is 12:39 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"