#1   Report Post  
Julian Campbell
 
Posts: n/a
Default CALCULATING VARIANCE

hello all,

I need to know how to calculate a - or + variance in a sheet

eg using cells A1, A2, A3, A4

A1 = EXPECTED FIGURE 10,000
A2 = ACTUAL FIGURE , 8,000
A3 = VARIANCE = - 2,000
A4 = VARIANCE 2,000 SHOWN AS A % LOSS

AND THE SANE AS ABOVE BUT WITH A2 ABOVE EXPECTED FIGURE SHOWN AS A +
VARIANCE AND SO SHOWN AS A % GAIN

Thanks a lot

Julian


  #2   Report Post  
Ragdyer
 
Posts: n/a
Default

Is this what you're looking for:

In A3,
=A2-A1

In A4,
=A2/A1-1
Custom format, +0.00%;-0.00%
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Julian Campbell" wrote in message
...
hello all,

I need to know how to calculate a - or + variance in a sheet

eg using cells A1, A2, A3, A4

A1 = EXPECTED FIGURE 10,000
A2 = ACTUAL FIGURE , 8,000
A3 = VARIANCE = - 2,000
A4 = VARIANCE 2,000 SHOWN AS A % LOSS

AND THE SANE AS ABOVE BUT WITH A2 ABOVE EXPECTED FIGURE SHOWN AS A +
VARIANCE AND SO SHOWN AS A % GAIN

Thanks a lot

Julian



  #3   Report Post  
Julian Campbell
 
Posts: n/a
Default

Seems to work except for the % equation. This is how I input it

in A4 I typed =A2/A1-1 (WHAT DOES THE - 1 MEAN?)

Then I right cliked and chose format cells, chose custom from the drop down
list and entered the following +0.00%;-0.00%

Whatever the results in A3, A4 stays at +0.00%

Any ideas

Thanks again

Julian
"Ragdyer" wrote in message
...
Is this what you're looking for:

In A3,
=A2-A1

In A4,
=A2/A1-1
Custom format, +0.00%;-0.00%
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Julian Campbell" wrote in message
...
hello all,

I need to know how to calculate a - or + variance in a sheet

eg using cells A1, A2, A3, A4

A1 = EXPECTED FIGURE 10,000
A2 = ACTUAL FIGURE , 8,000
A3 = VARIANCE = - 2,000
A4 = VARIANCE 2,000 SHOWN AS A % LOSS

AND THE SANE AS ABOVE BUT WITH A2 ABOVE EXPECTED FIGURE SHOWN AS A +
VARIANCE AND SO SHOWN AS A % GAIN

Thanks a lot

Julian





  #4   Report Post  
Ragdyer
 
Posts: n/a
Default

Properly formatted, A4 will display +0.00% *only* when A1 and A2 contain the
*same* value.
If A1 and A2 are empty, you'll get a #Div/0 error message in A4.

There is no connection between A3 and calculations in A4.

What values do you have in A1 and A2?
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Julian Campbell" wrote in message
...
Seems to work except for the % equation. This is how I input it

in A4 I typed =A2/A1-1 (WHAT DOES THE - 1 MEAN?)

Then I right cliked and chose format cells, chose custom from the drop

down
list and entered the following +0.00%;-0.00%

Whatever the results in A3, A4 stays at +0.00%

Any ideas

Thanks again

Julian
"Ragdyer" wrote in message
...
Is this what you're looking for:

In A3,
=A2-A1

In A4,
=A2/A1-1
Custom format, +0.00%;-0.00%
--
HTH,

RD


--------------------------------------------------------------------------

-
Please keep all correspondence within the NewsGroup, so all may benefit

!

--------------------------------------------------------------------------

-
"Julian Campbell" wrote in message
...
hello all,

I need to know how to calculate a - or + variance in a sheet

eg using cells A1, A2, A3, A4

A1 = EXPECTED FIGURE 10,000
A2 = ACTUAL FIGURE , 8,000
A3 = VARIANCE = - 2,000
A4 = VARIANCE 2,000 SHOWN AS A % LOSS

AND THE SANE AS ABOVE BUT WITH A2 ABOVE EXPECTED FIGURE SHOWN AS A +
VARIANCE AND SO SHOWN AS A % GAIN

Thanks a lot

Julian






  #5   Report Post  
Julian Campbell
 
Posts: n/a
Default

I have used 3 variations to see the differance

I have in A1 = 10000 A2 = 8000 VARIANCE = -2000 A4 READS +0.00%

Then A1 = 10000 A2 = 11000 VARIANCE = 1000 A4 READS +0.00%

Then A1 = 0 A2 = 0 VARIANCE = 0 A4 = #DIV/0!

What am I doing wrong?

Thanks again

Julian

"Ragdyer" wrote in message
...
Properly formatted, A4 will display +0.00% *only* when A1 and A2 contain
the
*same* value.
If A1 and A2 are empty, you'll get a #Div/0 error message in A4.

There is no connection between A3 and calculations in A4.

What values do you have in A1 and A2?
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Julian Campbell" wrote in message
...
Seems to work except for the % equation. This is how I input it

in A4 I typed =A2/A1-1 (WHAT DOES THE - 1 MEAN?)

Then I right cliked and chose format cells, chose custom from the drop

down
list and entered the following +0.00%;-0.00%

Whatever the results in A3, A4 stays at +0.00%

Any ideas

Thanks again

Julian
"Ragdyer" wrote in message
...
Is this what you're looking for:

In A3,
=A2-A1

In A4,
=A2/A1-1
Custom format, +0.00%;-0.00%
--
HTH,

RD


--------------------------------------------------------------------------

-
Please keep all correspondence within the NewsGroup, so all may benefit

!

--------------------------------------------------------------------------

-
"Julian Campbell" wrote in message
...
hello all,

I need to know how to calculate a - or + variance in a sheet

eg using cells A1, A2, A3, A4

A1 = EXPECTED FIGURE 10,000
A2 = ACTUAL FIGURE , 8,000
A3 = VARIANCE = - 2,000
A4 = VARIANCE 2,000 SHOWN AS A % LOSS

AND THE SANE AS ABOVE BUT WITH A2 ABOVE EXPECTED FIGURE SHOWN AS A +
VARIANCE AND SO SHOWN AS A % GAIN

Thanks a lot

Julian










  #6   Report Post  
Ragdyer
 
Posts: n/a
Default

All I can suggest is open a brand new, empty sheet, and start all over
again, and see what you get.
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------

"Julian Campbell" wrote in message
...
I have used 3 variations to see the differance

I have in A1 = 10000 A2 = 8000 VARIANCE = -2000 A4 READS +0.00%

Then A1 = 10000 A2 = 11000 VARIANCE = 1000 A4 READS +0.00%

Then A1 = 0 A2 = 0 VARIANCE = 0 A4 = #DIV/0!

What am I doing wrong?

Thanks again

Julian

"Ragdyer" wrote in message
...
Properly formatted, A4 will display +0.00% *only* when A1 and A2 contain
the
*same* value.
If A1 and A2 are empty, you'll get a #Div/0 error message in A4.

There is no connection between A3 and calculations in A4.

What values do you have in A1 and A2?
--
Regards,

RD


--------------------------------------------------------------------------

-
Please keep all correspondence within the NewsGroup, so all may benefit

!

--------------------------------------------------------------------------

-
"Julian Campbell" wrote in message
...
Seems to work except for the % equation. This is how I input it

in A4 I typed =A2/A1-1 (WHAT DOES THE - 1 MEAN?)

Then I right cliked and chose format cells, chose custom from the drop

down
list and entered the following +0.00%;-0.00%

Whatever the results in A3, A4 stays at +0.00%

Any ideas

Thanks again

Julian
"Ragdyer" wrote in message
...
Is this what you're looking for:

In A3,
=A2-A1

In A4,
=A2/A1-1
Custom format, +0.00%;-0.00%
--
HTH,

RD



-------------------------------------------------------------------------

-
-
Please keep all correspondence within the NewsGroup, so all may

benefit
!


-------------------------------------------------------------------------

-
-
"Julian Campbell" wrote in message
...
hello all,

I need to know how to calculate a - or + variance in a sheet

eg using cells A1, A2, A3, A4

A1 = EXPECTED FIGURE 10,000
A2 = ACTUAL FIGURE , 8,000
A3 = VARIANCE = - 2,000
A4 = VARIANCE 2,000 SHOWN AS A % LOSS

AND THE SANE AS ABOVE BUT WITH A2 ABOVE EXPECTED FIGURE SHOWN AS A +
VARIANCE AND SO SHOWN AS A % GAIN

Thanks a lot

Julian









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
calculating excel spreadsheet files for pensions and life insurance (including age calculation sheets) RICHARD Excel Worksheet Functions 1 March 15th 05 05:49 PM
AGE CALCULATING EXCEL SPREADSHEETS AND OTHERS! RICHARD Excel Discussion (Misc queries) 0 March 1st 05 01:53 PM
Why does excel use different denominator for variance and covarian Harlan Grove Excel Worksheet Functions 0 January 25th 05 02:19 AM
Pivot Tables - Variance and % Variance fields CraigS Excel Discussion (Misc queries) 5 January 6th 05 12:22 AM
Variance calculation N.C. Arens Excel Worksheet Functions 1 December 5th 04 07:44 AM


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