Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Beth
 
Posts: n/a
Default PLease help me with formula's

Pleaes help me to compare the current Month vs. Average (Cell AD). I thought I
could use the same formula below, and then subtract the Avg. cell from the
current month cell, but that isn't seeming to work? Any ideas?


=AVERAGE(IF($R$11:$AC$11<=S2,$R$14:$AC$14))-AD14 (Not working)

2). I would also like to have a formula to do the Delta % from Current
Month & Average that populates with each month as the average does below.

But that is not working either. The original formula I was using is

=1-(AC14/AD14) but that would mean I have to manually change this as well.
Wasn't wanting to do that...

Thanks. :)

--
Beth


"Bob Phillips" wrote:


"Beth" wrote in message
...

1) I am now wanting to compare the current Month vs. Average. I thought I
could use the same formula below, and then subtract the Avg. cell from the
current month cell, but that isn't seeming to work? Any ideas?


Sounds okay. What formula did you use?

2). I would also like to have a formula to do the Delta % from Current
Month & Average that changes with each month as the average does below.

But
that is not working either.


Again, show us the formula.

3) In the formula that was giving to me below, I am not understanding the
concept of these two things-can someone explain them (It does however work
wonderfully!!)?

Here is the entire formula:

=SUMPRODUCT(($R$11:$AC$11<=Q2)*$R$12:$AC$12)/SUMPRODUCT(--($R$11:$AC$11<=Q2)
)

Here are my questions:
Why multiply?
)*$R$12:$AC$12)/

Why the dashes?
--($R$11:$AC$11<=Q2))


They are used to coerce TRUE/FALSE results to 1/0 which SP can work on. I
have no idea why your responder used both, they could have stuck to one. See
http://www.xldynamic.com/source/xld.SUMPRODUCT.html for a detailed
explanation.

BTW, I would the use the simpler, and more obvious

=AVERAGE(IF($R$11:$AC$11<=Q2,$R$12:$AC$12))

which is an array formula, it should be committed with Ctrl-Shift-Enter, not
just Enter.







--
Beth
--
Beth
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Don Guillett
 
Posts: n/a
Default PLease help me with formula's

Not working means?
Did you array enter the array formula?

--
Don Guillett
SalesAid Software

"Beth" wrote in message
...
Pleaes help me to compare the current Month vs. Average (Cell AD). I
thought I
could use the same formula below, and then subtract the Avg. cell from
the
current month cell, but that isn't seeming to work? Any ideas?


=AVERAGE(IF($R$11:$AC$11<=S2,$R$14:$AC$14))-AD14 (Not working)

2). I would also like to have a formula to do the Delta % from Current
Month & Average that populates with each month as the average does
below.

But that is not working either. The original formula I was using is

=1-(AC14/AD14) but that would mean I have to manually change this as well.
Wasn't wanting to do that...

Thanks. :)

--
Beth


"Bob Phillips" wrote:


"Beth" wrote in message
...

1) I am now wanting to compare the current Month vs. Average. I
thought I
could use the same formula below, and then subtract the Avg. cell from
the
current month cell, but that isn't seeming to work? Any ideas?


Sounds okay. What formula did you use?

2). I would also like to have a formula to do the Delta % from Current
Month & Average that changes with each month as the average does below.

But
that is not working either.


Again, show us the formula.

3) In the formula that was giving to me below, I am not understanding
the
concept of these two things-can someone explain them (It does however
work
wonderfully!!)?

Here is the entire formula:

=SUMPRODUCT(($R$11:$AC$11<=Q2)*$R$12:$AC$12)/SUMPRODUCT(--($R$11:$AC$11<=Q2)
)

Here are my questions:
Why multiply?
)*$R$12:$AC$12)/

Why the dashes?
--($R$11:$AC$11<=Q2))


They are used to coerce TRUE/FALSE results to 1/0 which SP can work on. I
have no idea why your responder used both, they could have stuck to one.
See
http://www.xldynamic.com/source/xld.SUMPRODUCT.html for a detailed
explanation.

BTW, I would the use the simpler, and more obvious

=AVERAGE(IF($R$11:$AC$11<=Q2,$R$12:$AC$12))

which is an array formula, it should be committed with Ctrl-Shift-Enter,
not
just Enter.







--
Beth
--
Beth



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Beth
 
Posts: n/a
Default PLease help me with formula's

Not working means I am unable to populate a formula that will change my
current month cell vs. average cell when changing from month to month without
manually having to enter in a formula for each month. I was hoping to have a
formula automatically populate information like I had done so with the
average cell (see beginning of this message). I did try to array the formula
but it is not working, I do not get the right number.

As for my 2nd question with Delta, same response above as to not working.
Does this make sense?
Thanks,
--
Beth


"Don Guillett" wrote:

Not working means?
Did you array enter the array formula?

--
Don Guillett
SalesAid Software

"Beth" wrote in message
...
Pleaes help me to compare the current Month vs. Average (Cell AD). I
thought I
could use the same formula below, and then subtract the Avg. cell from
the
current month cell, but that isn't seeming to work? Any ideas?


=AVERAGE(IF($R$11:$AC$11<=S2,$R$14:$AC$14))-AD14 (Not working)

2). I would also like to have a formula to do the Delta % from Current
Month & Average that populates with each month as the average does
below.
But that is not working either. The original formula I was using is

=1-(AC14/AD14) but that would mean I have to manually change this as well.
Wasn't wanting to do that...

Thanks. :)

--
Beth


"Bob Phillips" wrote:


"Beth" wrote in message
...

1) I am now wanting to compare the current Month vs. Average. I
thought I
could use the same formula below, and then subtract the Avg. cell from
the
current month cell, but that isn't seeming to work? Any ideas?

Sounds okay. What formula did you use?

2). I would also like to have a formula to do the Delta % from Current
Month & Average that changes with each month as the average does below.
But
that is not working either.

Again, show us the formula.

3) In the formula that was giving to me below, I am not understanding
the
concept of these two things-can someone explain them (It does however
work
wonderfully!!)?

Here is the entire formula:

=SUMPRODUCT(($R$11:$AC$11<=Q2)*$R$12:$AC$12)/SUMPRODUCT(--($R$11:$AC$11<=Q2)
)

Here are my questions:
Why multiply?
)*$R$12:$AC$12)/

Why the dashes?
--($R$11:$AC$11<=Q2))

They are used to coerce TRUE/FALSE results to 1/0 which SP can work on. I
have no idea why your responder used both, they could have stuck to one.
See
http://www.xldynamic.com/source/xld.SUMPRODUCT.html for a detailed
explanation.

BTW, I would the use the simpler, and more obvious

=AVERAGE(IF($R$11:$AC$11<=Q2,$R$12:$AC$12))

which is an array formula, it should be committed with Ctrl-Shift-Enter,
not
just Enter.







--
Beth
--
Beth




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
John Michl
 
Posts: n/a
Default PLease help me with formula's

I believe I answered this in a different thread titled
Averages-HLOOKUP??.

- John

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
Formulas not recognizing new data malakingaso Excel Discussion (Misc queries) 1 February 8th 06 07:27 PM
Countif formulas change after doing a sort Bob Smith Excel Worksheet Functions 3 January 3rd 06 11:17 PM
Array Formulas take waaaay too long... belly0fdesire Excel Worksheet Functions 7 August 8th 05 10:11 PM
Problem with named formula's nathan Excel Worksheet Functions 0 January 21st 05 04:07 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 08:33 AM.

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"