Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Sharona77
 
Posts: n/a
Default Need formula help setting a range for calculations

I made the following formula:
=IF(AND(F1612,F16<25),(really large formula)/12*(F16-12),0)

F16 is the # of months. What I need to do is be able to calculate only for
the range of months listed, and if the # of months is higher, I need to keep
the calculation to a 12 month period only, not calculate higher with this set
of formulas. I will then have another line with the same basic formula
calculating for the next year range, but only for 25-36 months, and be 0 if
F16 is < 25 months.

Ideas? I can't figure out how to calculate only the months for the ranges-
it keeps calculating more if F16 is greater than the range.

HELP!!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Roger Govier
 
Posts: n/a
Default Need formula help setting a range for calculations

Hi Sharona

I substituted the figure of 480 for your (really large formula).
With 13 in F16 it returns 40, with 14 it returns 80, with 15 it returns
120 and so on, which is exactly what I would expect if the really large
formula were returning a constant figure, as the divisor will be an ever
increasing value between 1 and 12.
Is this the type of result you are looking for? If not, then re-examine
this part.

Now, you need to turn to the really large formula bit, what is the total
value being returned from here. Is this picking up the data from the
same range of months that you are dividing by?

--
Regards

Roger Govier


"Sharona77" wrote in message
...
I made the following formula:
=IF(AND(F1612,F16<25),(really large formula)/12*(F16-12),0)

F16 is the # of months. What I need to do is be able to calculate only
for
the range of months listed, and if the # of months is higher, I need
to keep
the calculation to a 12 month period only, not calculate higher with
this set
of formulas. I will then have another line with the same basic
formula
calculating for the next year range, but only for 25-36 months, and be
0 if
F16 is < 25 months.

Ideas? I can't figure out how to calculate only the months for the
ranges-
it keeps calculating more if F16 is greater than the range.

HELP!!



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Sharona77
 
Posts: n/a
Default Need formula help setting a range for calculations

Thanks for your reply Roger-

the RLF is a calculation from another part of a different worksheet
involving salary, 3% increases, the appropriate fringe rates. It will be
constant for the year grouping (calculations under year 2 cell (example),
then 3%increase and diff. fringe rate for year4 cell, etc.) My problems
a 1). I need the calculation to stop after it completes the designated
year- the way I have it now, it calculates the diff over the whole range
given (ie if F16 is 25 it calculates it for 13 months, not just 12). I want
each cell to calculate up to the # of months in that year and then stop at
that value, or give a 0 value only if the months are less than that year (ie
if 25 months, the year 4 and 5 cells will give 0 values). I have a cell for
2 year (example), 3yr, 4yr, and 5 yr. 2).I need the value to stay in the cell
if it is applicable- right now it only is in the cell if it is in the middle
of the range; if F16 were 25, it would come back with 0, instead of the value
for months 12-24.

I know what I need to do, just not how to do it. Any help/ideas would be
great!!!

Thanks!!

S

"Roger Govier" wrote:

Hi Sharona

I substituted the figure of 480 for your (really large formula).
With 13 in F16 it returns 40, with 14 it returns 80, with 15 it returns
120 and so on, which is exactly what I would expect if the really large
formula were returning a constant figure, as the divisor will be an ever
increasing value between 1 and 12.
Is this the type of result you are looking for? If not, then re-examine
this part.

Now, you need to turn to the really large formula bit, what is the total
value being returned from here. Is this picking up the data from the
same range of months that you are dividing by?

--
Regards

Roger Govier


"Sharona77" wrote in message
...
I made the following formula:
=IF(AND(F1612,F16<25),(really large formula)/12*(F16-12),0)

F16 is the # of months. What I need to do is be able to calculate only
for
the range of months listed, and if the # of months is higher, I need
to keep
the calculation to a 12 month period only, not calculate higher with
this set
of formulas. I will then have another line with the same basic
formula
calculating for the next year range, but only for 25-36 months, and be
0 if
F16 is < 25 months.

Ideas? I can't figure out how to calculate only the months for the
ranges-
it keeps calculating more if F16 is greater than the range.

HELP!!




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Roger Govier
 
Posts: n/a
Default Need formula help setting a range for calculations

Hi Sharona

Still not sure I understand things fully from your explanation, but of
course it is quite obvious to you<bg

One thing to try maybe is to use MIN() within your formula somewhere.
=RLF/MIN(12,number_of_months)

If that doesn't help, you may email me direct with a copy of your file
and an explanation, and I will see if I can sort it out for you.
Remove NOSAPM from my address to send direct.

--
Regards

Roger Govier


"Sharona77" wrote in message
...
Thanks for your reply Roger-

the RLF is a calculation from another part of a different worksheet
involving salary, 3% increases, the appropriate fringe rates. It will
be
constant for the year grouping (calculations under year 2 cell
(example),
then 3%increase and diff. fringe rate for year4 cell, etc.) My
problems
a 1). I need the calculation to stop after it completes the
designated
year- the way I have it now, it calculates the diff over the whole
range
given (ie if F16 is 25 it calculates it for 13 months, not just 12). I
want
each cell to calculate up to the # of months in that year and then
stop at
that value, or give a 0 value only if the months are less than that
year (ie
if 25 months, the year 4 and 5 cells will give 0 values). I have a
cell for
2 year (example), 3yr, 4yr, and 5 yr. 2).I need the value to stay in
the cell
if it is applicable- right now it only is in the cell if it is in the
middle
of the range; if F16 were 25, it would come back with 0, instead of
the value
for months 12-24.

I know what I need to do, just not how to do it. Any help/ideas would
be
great!!!

Thanks!!

S

"Roger Govier" wrote:

Hi Sharona

I substituted the figure of 480 for your (really large formula).
With 13 in F16 it returns 40, with 14 it returns 80, with 15 it
returns
120 and so on, which is exactly what I would expect if the really
large
formula were returning a constant figure, as the divisor will be an
ever
increasing value between 1 and 12.
Is this the type of result you are looking for? If not, then
re-examine
this part.

Now, you need to turn to the really large formula bit, what is the
total
value being returned from here. Is this picking up the data from the
same range of months that you are dividing by?

--
Regards

Roger Govier


"Sharona77" wrote in message
...
I made the following formula:
=IF(AND(F1612,F16<25),(really large formula)/12*(F16-12),0)

F16 is the # of months. What I need to do is be able to calculate
only
for
the range of months listed, and if the # of months is higher, I
need
to keep
the calculation to a 12 month period only, not calculate higher
with
this set
of formulas. I will then have another line with the same basic
formula
calculating for the next year range, but only for 25-36 months, and
be
0 if
F16 is < 25 months.

Ideas? I can't figure out how to calculate only the months for the
ranges-
it keeps calculating more if F16 is greater than the range.

HELP!!






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Sharona77
 
Posts: n/a
Default Need formula help setting a range for calculations

Thanks for your suggestion,Roger.

I will send you what i am working on so it makes sense on your end, and see
what you can come up with.

Again, thanks for your help and suggestions!

S

"Roger Govier" wrote:

Hi Sharona

Still not sure I understand things fully from your explanation, but of
course it is quite obvious to you<bg

One thing to try maybe is to use MIN() within your formula somewhere.
=RLF/MIN(12,number_of_months)

If that doesn't help, you may email me direct with a copy of your file
and an explanation, and I will see if I can sort it out for you.
Remove NOSAPM from my address to send direct.

--
Regards

Roger Govier


"Sharona77" wrote in message
...
Thanks for your reply Roger-

the RLF is a calculation from another part of a different worksheet
involving salary, 3% increases, the appropriate fringe rates. It will
be
constant for the year grouping (calculations under year 2 cell
(example),
then 3%increase and diff. fringe rate for year4 cell, etc.) My
problems
a 1). I need the calculation to stop after it completes the
designated
year- the way I have it now, it calculates the diff over the whole
range
given (ie if F16 is 25 it calculates it for 13 months, not just 12). I
want
each cell to calculate up to the # of months in that year and then
stop at
that value, or give a 0 value only if the months are less than that
year (ie
if 25 months, the year 4 and 5 cells will give 0 values). I have a
cell for
2 year (example), 3yr, 4yr, and 5 yr. 2).I need the value to stay in
the cell
if it is applicable- right now it only is in the cell if it is in the
middle
of the range; if F16 were 25, it would come back with 0, instead of
the value
for months 12-24.

I know what I need to do, just not how to do it. Any help/ideas would
be
great!!!

Thanks!!

S

"Roger Govier" wrote:

Hi Sharona

I substituted the figure of 480 for your (really large formula).
With 13 in F16 it returns 40, with 14 it returns 80, with 15 it
returns
120 and so on, which is exactly what I would expect if the really
large
formula were returning a constant figure, as the divisor will be an
ever
increasing value between 1 and 12.
Is this the type of result you are looking for? If not, then
re-examine
this part.

Now, you need to turn to the really large formula bit, what is the
total
value being returned from here. Is this picking up the data from the
same range of months that you are dividing by?

--
Regards

Roger Govier


"Sharona77" wrote in message
...
I made the following formula:
=IF(AND(F1612,F16<25),(really large formula)/12*(F16-12),0)

F16 is the # of months. What I need to do is be able to calculate
only
for
the range of months listed, and if the # of months is higher, I
need
to keep
the calculation to a 12 month period only, not calculate higher
with
this set
of formulas. I will then have another line with the same basic
formula
calculating for the next year range, but only for 25-36 months, and
be
0 if
F16 is < 25 months.

Ideas? I can't figure out how to calculate only the months for the
ranges-
it keeps calculating more if F16 is greater than the range.

HELP!!








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Sharona77
 
Posts: n/a
Default Need formula help setting a range for calculations

Thanks Roger- You were very helpful in solving my problem!!!!!

S

"Sharona77" wrote:

I made the following formula:
=IF(AND(F1612,F16<25),(really large formula)/12*(F16-12),0)

F16 is the # of months. What I need to do is be able to calculate only for
the range of months listed, and if the # of months is higher, I need to keep
the calculation to a 12 month period only, not calculate higher with this set
of formulas. I will then have another line with the same basic formula
calculating for the next year range, but only for 25-36 months, and be 0 if
F16 is < 25 months.

Ideas? I can't figure out how to calculate only the months for the ranges-
it keeps calculating more if F16 is greater than the range.

HELP!!

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Roger Govier
 
Posts: n/a
Default Need formula help setting a range for calculations

Hi

For the sake of completeness in the Google archives, Sharona mailed her
file direct.
Her "really large formula" (RLF) ,which was computing a total cost with
inflation of costs over time, I just simplified a little, but that was
not really the issue.
Cell E16 held the number of months duration of a project. For time
periods over 12 months, Sharona needed a formula to take these costs
multiplied by the number of months applicable to each of years 2, 3, 4
and 5 and obviously not include any cost for the years past the
project's duration.
The formula I gave her, entered in cell E17 and copied down through
cells E18:E20 was

=(RLF)*MAX(0,($E$16-ROW(A1)*12)/12)
For a project duration of say 33 months, this would give values of 1 ,
..75, 0, and 0 and did away with the need for any of Sharona's IF
conditions.
--
Regards

Roger Govier


"Sharona77" wrote in message
...
Thanks Roger- You were very helpful in solving my problem!!!!!

S

"Sharona77" wrote:

I made the following formula:
=IF(AND(F1612,F16<25),(really large formula)/12*(F16-12),0)

F16 is the # of months. What I need to do is be able to calculate
only for
the range of months listed, and if the # of months is higher, I need
to keep
the calculation to a 12 month period only, not calculate higher with
this set
of formulas. I will then have another line with the same basic
formula
calculating for the next year range, but only for 25-36 months, and
be 0 if
F16 is < 25 months.

Ideas? I can't figure out how to calculate only the months for the
ranges-
it keeps calculating more if F16 is greater than the range.

HELP!!



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
Formula to find first, second, third etc. value (range) Cello Excel Discussion (Misc queries) 2 August 6th 05 07:57 AM
Match function...random search? Les Excel Worksheet Functions 10 July 28th 05 11:54 AM
Question regarding dynamic range setting dharmik Excel Worksheet Functions 2 July 22nd 05 08:44 PM
Using the text from a cell as a range name in a formula Fletch Excel Discussion (Misc queries) 3 June 13th 05 07:57 PM
Setting dynamic range in a formula Phillycheese5 Excel Worksheet Functions 9 June 10th 05 07:58 PM


All times are GMT +1. The time now is 11:15 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"