Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
JWCardington
 
Posts: n/a
Default An Excel Formula Question

I have taken over a new position at work. This person who I replaced had
created a worksheet that calculates revenue recovery for specific units of
time then also calculates the aggregate revenue recovery over a period of
multiples of these specific units of time. Below is an example of this
formula for the individual unit of time and one for the average over multiple
units of time.

individual =1-(+I38/C37)
multiple =1-(SUM(I38:AK38)/SUM(C37:AE37))

My question is what does the 1- at the beinning of each of these formulas
do? Is it a some type of function like the 3 (counts) or the 9 (sums) do in
the below examples? If so what is its function?

=subtotal(3,a2:j2)
=subtotal(9,a2:j2)

Any help would be GREATLY Appreciated.

Thank you,
JWCardington
  #2   Report Post  
JE McGimpsey
 
Posts: n/a
Default

The first formula subtracts I38/C37 from 1 (note that the + is
superfluous)

The second formula subtracts SUM(I38:AK38)/SUM(C37:AE37) from 1.

In article ,
JWCardington wrote:

I have taken over a new position at work. This person who I replaced had
created a worksheet that calculates revenue recovery for specific units of
time then also calculates the aggregate revenue recovery over a period of
multiples of these specific units of time. Below is an example of this
formula for the individual unit of time and one for the average over multiple
units of time.

individual =1-(+I38/C37)
multiple =1-(SUM(I38:AK38)/SUM(C37:AE37))

My question is what does the 1- at the beinning of each of these formulas
do? Is it a some type of function like the 3 (counts) or the 9 (sums) do in
the below examples? If so what is its function?

=subtotal(3,a2:j2)
=subtotal(9,a2:j2)

Any help would be GREATLY Appreciated.

Thank you,
JWCardington

  #3   Report Post  
JWCardington
 
Posts: n/a
Default

JE,

Thank you for your quick reply. However I am still confused. is the 1 a
function of somekind or is it simply just a random number? In other words
what is the purpose of subtracting the value I38/C37 from 1?

"JE McGimpsey" wrote:

The first formula subtracts I38/C37 from 1 (note that the + is
superfluous)

The second formula subtracts SUM(I38:AK38)/SUM(C37:AE37) from 1.

In article ,
JWCardington wrote:

I have taken over a new position at work. This person who I replaced had
created a worksheet that calculates revenue recovery for specific units of
time then also calculates the aggregate revenue recovery over a period of
multiples of these specific units of time. Below is an example of this
formula for the individual unit of time and one for the average over multiple
units of time.

individual =1-(+I38/C37)
multiple =1-(SUM(I38:AK38)/SUM(C37:AE37))

My question is what does the 1- at the beinning of each of these formulas
do? Is it a some type of function like the 3 (counts) or the 9 (sums) do in
the below examples? If so what is its function?

=subtotal(3,a2:j2)
=subtotal(9,a2:j2)

Any help would be GREATLY Appreciated.

Thank you,
JWCardington


  #4   Report Post  
Bob Phillips
 
Posts: n/a
Default

It is a number, but I doubt it is random.

Is the cell formatted as percentage? I am thinking that the guy was able to
calculate a percentage for a particular case, but he wanted to know the 'not
case', so he subtracted it from 1 (1 - 40% gives 60%).

--
HTH

Bob Phillips

"JWCardington" wrote in message
...
JE,

Thank you for your quick reply. However I am still confused. is the 1 a
function of somekind or is it simply just a random number? In other words
what is the purpose of subtracting the value I38/C37 from 1?

"JE McGimpsey" wrote:

The first formula subtracts I38/C37 from 1 (note that the + is
superfluous)

The second formula subtracts SUM(I38:AK38)/SUM(C37:AE37) from 1.

In article ,
JWCardington wrote:

I have taken over a new position at work. This person who I replaced

had
created a worksheet that calculates revenue recovery for specific

units of
time then also calculates the aggregate revenue recovery over a period

of
multiples of these specific units of time. Below is an example of this
formula for the individual unit of time and one for the average over

multiple
units of time.

individual =1-(+I38/C37)
multiple =1-(SUM(I38:AK38)/SUM(C37:AE37))

My question is what does the 1- at the beinning of each of these

formulas
do? Is it a some type of function like the 3 (counts) or the 9 (sums)

do in
the below examples? If so what is its function?

=subtotal(3,a2:j2)
=subtotal(9,a2:j2)

Any help would be GREATLY Appreciated.

Thank you,
JWCardington




  #5   Report Post  
JWCardington
 
Posts: n/a
Default

Bob,

Yes, the cell is formatted as a percentage. I have tried changing the 1 to
a different number and when I do the result becomes some astranomical number
that makes no sense.

"Bob Phillips" wrote:

It is a number, but I doubt it is random.

Is the cell formatted as percentage? I am thinking that the guy was able to
calculate a percentage for a particular case, but he wanted to know the 'not
case', so he subtracted it from 1 (1 - 40% gives 60%).

--
HTH

Bob Phillips

"JWCardington" wrote in message
...
JE,

Thank you for your quick reply. However I am still confused. is the 1 a
function of somekind or is it simply just a random number? In other words
what is the purpose of subtracting the value I38/C37 from 1?

"JE McGimpsey" wrote:

The first formula subtracts I38/C37 from 1 (note that the + is
superfluous)

The second formula subtracts SUM(I38:AK38)/SUM(C37:AE37) from 1.

In article ,
JWCardington wrote:

I have taken over a new position at work. This person who I replaced

had
created a worksheet that calculates revenue recovery for specific

units of
time then also calculates the aggregate revenue recovery over a period

of
multiples of these specific units of time. Below is an example of this
formula for the individual unit of time and one for the average over

multiple
units of time.

individual =1-(+I38/C37)
multiple =1-(SUM(I38:AK38)/SUM(C37:AE37))

My question is what does the 1- at the beinning of each of these

formulas
do? Is it a some type of function like the 3 (counts) or the 9 (sums)

do in
the below examples? If so what is its function?

=subtotal(3,a2:j2)
=subtotal(9,a2:j2)

Any help would be GREATLY Appreciated.

Thank you,
JWCardington






  #6   Report Post  
JWCardington
 
Posts: n/a
Default

Ah HA! Bob, I think I understand it now. If I understand your reply
correctly 1 simply represents 100% of what ever the beginning number is. Am
I correct?

"JWCardington" wrote:

Bob,

Yes, the cell is formatted as a percentage. I have tried changing the 1 to
a different number and when I do the result becomes some astranomical number
that makes no sense.

"Bob Phillips" wrote:

It is a number, but I doubt it is random.

Is the cell formatted as percentage? I am thinking that the guy was able to
calculate a percentage for a particular case, but he wanted to know the 'not
case', so he subtracted it from 1 (1 - 40% gives 60%).

--
HTH

Bob Phillips

"JWCardington" wrote in message
...
JE,

Thank you for your quick reply. However I am still confused. is the 1 a
function of somekind or is it simply just a random number? In other words
what is the purpose of subtracting the value I38/C37 from 1?

"JE McGimpsey" wrote:

The first formula subtracts I38/C37 from 1 (note that the + is
superfluous)

The second formula subtracts SUM(I38:AK38)/SUM(C37:AE37) from 1.

In article ,
JWCardington wrote:

I have taken over a new position at work. This person who I replaced

had
created a worksheet that calculates revenue recovery for specific

units of
time then also calculates the aggregate revenue recovery over a period

of
multiples of these specific units of time. Below is an example of this
formula for the individual unit of time and one for the average over

multiple
units of time.

individual =1-(+I38/C37)
multiple =1-(SUM(I38:AK38)/SUM(C37:AE37))

My question is what does the 1- at the beinning of each of these

formulas
do? Is it a some type of function like the 3 (counts) or the 9 (sums)

do in
the below examples? If so what is its function?

=subtotal(3,a2:j2)
=subtotal(9,a2:j2)

Any help would be GREATLY Appreciated.

Thank you,
JWCardington




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 checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 07:48 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 03:28 AM
In excel the formula bar behaves differently on different machines vijay Excel Discussion (Misc queries) 0 May 20th 05 06:27 AM
Excel VB-Copy formula down until adjacent cell (left) is blank? Tony P. Excel Discussion (Misc queries) 1 May 18th 05 06:11 PM
How do I get the formula bar in excel 2003 unionhall Excel Discussion (Misc queries) 1 February 17th 05 10:10 AM


All times are GMT +1. The time now is 01:28 PM.

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"