ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Zero values in formula (https://www.excelbanter.com/excel-discussion-misc-queries/54154-zero-values-formula.html)

Maggie

Zero values in formula
 
My formula is A1/A2 however if they are both Zero values it is producing the
#DIV/O! If there are Zeros in A1 and A2 how do I get the product to also be
Zero in A3?


--
Maggie

Chip Pearson

Zero values in formula
 
Maggie,

Try a formula like

=IF(A2=0,0,A1/A2)


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Maggie" wrote in message
...
My formula is A1/A2 however if they are both Zero values it is
producing the
#DIV/O! If there are Zeros in A1 and A2 how do I get the
product to also be
Zero in A3?


--
Maggie




Bob Phillips

Zero values in formula
 
=IF(A2=0,A2,A1/A2)

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Maggie" wrote in message
...
My formula is A1/A2 however if they are both Zero values it is producing

the
#DIV/O! If there are Zeros in A1 and A2 how do I get the product to also

be
Zero in A3?


--
Maggie




RagDyer

Zero values in formula
 
One way:

=IF(A2,A1/A2,0)

--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


"Maggie" wrote in message
...
My formula is A1/A2 however if they are both Zero values it is producing

the
#DIV/O! If there are Zeros in A1 and A2 how do I get the product to also

be
Zero in A3?


--
Maggie



Maggie

Zero values in formula
 
CHRIS THANK YOU FOR YOUR RESPONCE HOWEVER, I AM LOOKING FOR THE FOLLOWING.
SORRY FOR THE CONFUSION.

A1=1 AND A2=1 AND WHEN I DIVIDE A1 BY A2 THEN IN A3 I GET 1. HOWEVER, WHEN
BOTH A1 AND A2 EQUAL ZERO THEN I WOULD LIKE A3 TO EQUAL ZERO. SO THERE STILL
NEEDS TO BE A DIVISION CALCULATION BUT WHEN THEY ARE BOTH ZERO IT WOULD THEN
BE ZERO IN A3. I HOPE THIS IS MORE CLEAR SOMETIMES I HAVE A HARD TIME GETTING
MY POINT ACROSS IN AN E-MAIL. THANKS AGAIN FOR YOUR ASSISTANCE.
--
Maggie


"Chip Pearson" wrote:

Maggie,

Try a formula like

=IF(A2=0,0,A1/A2)


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Maggie" wrote in message
...
My formula is A1/A2 however if they are both Zero values it is
producing the
#DIV/O! If there are Zeros in A1 and A2 how do I get the
product to also be
Zero in A3?


--
Maggie





Chip Pearson

Zero values in formula
 
Try

=IF(AND(A1=0,A2=0),0,A1/A2)


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com



"Maggie" wrote in message
...
CHRIS THANK YOU FOR YOUR RESPONCE HOWEVER, I AM LOOKING FOR THE
FOLLOWING.
SORRY FOR THE CONFUSION.

A1=1 AND A2=1 AND WHEN I DIVIDE A1 BY A2 THEN IN A3 I GET 1.
HOWEVER, WHEN
BOTH A1 AND A2 EQUAL ZERO THEN I WOULD LIKE A3 TO EQUAL ZERO.
SO THERE STILL
NEEDS TO BE A DIVISION CALCULATION BUT WHEN THEY ARE BOTH ZERO
IT WOULD THEN
BE ZERO IN A3. I HOPE THIS IS MORE CLEAR SOMETIMES I HAVE A
HARD TIME GETTING
MY POINT ACROSS IN AN E-MAIL. THANKS AGAIN FOR YOUR ASSISTANCE.
--
Maggie


"Chip Pearson" wrote:

Maggie,

Try a formula like

=IF(A2=0,0,A1/A2)


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Maggie" wrote in message
...
My formula is A1/A2 however if they are both Zero values it
is
producing the
#DIV/O! If there are Zeros in A1 and A2 how do I get the
product to also be
Zero in A3?


--
Maggie







Bob Phillips

Zero values in formula
 
Are you saying that you want #DIV/0 if A1 holds 0 and A2 doesn't, because
that is what Chip's alternative will give you. It seems that Chip's original
is more robust.

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Maggie" wrote in message
...
CHRIS THANK YOU FOR YOUR RESPONCE HOWEVER, I AM LOOKING FOR THE FOLLOWING.
SORRY FOR THE CONFUSION.

A1=1 AND A2=1 AND WHEN I DIVIDE A1 BY A2 THEN IN A3 I GET 1. HOWEVER, WHEN
BOTH A1 AND A2 EQUAL ZERO THEN I WOULD LIKE A3 TO EQUAL ZERO. SO THERE

STILL
NEEDS TO BE A DIVISION CALCULATION BUT WHEN THEY ARE BOTH ZERO IT WOULD

THEN
BE ZERO IN A3. I HOPE THIS IS MORE CLEAR SOMETIMES I HAVE A HARD TIME

GETTING
MY POINT ACROSS IN AN E-MAIL. THANKS AGAIN FOR YOUR ASSISTANCE.
--
Maggie


"Chip Pearson" wrote:

Maggie,

Try a formula like

=IF(A2=0,0,A1/A2)


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Maggie" wrote in message
...
My formula is A1/A2 however if they are both Zero values it is
producing the
#DIV/O! If there are Zeros in A1 and A2 how do I get the
product to also be
Zero in A3?


--
Maggie







Maggie

Zero values in formula
 
YOU FOR YOUR RESPONCE HOWEVER, I AM LOOKING FOR THE FOLLOWING.
SORRY FOR THE CONFUSION.

A1=1 AND A2=1 AND WHEN I DIVIDE A1 BY A2 THEN IN A3 I GET 1. HOWEVER, WHEN
BOTH A1 AND A2 EQUAL ZERO THEN I WOULD LIKE A3 TO EQUAL ZERO. SO THERE STILL
NEEDS TO BE A DIVISION CALCULATION BUT WHEN THEY ARE BOTH ZERO IT WOULD THEN
BE ZERO IN A3. I HOPE THIS IS MORE CLEAR SOMETIMES I HAVE A HARD TIME GETTING
MY POINT ACROSS IN AN E-MAIL. THANKS AGAIN FOR YOUR ASSISTANCE.
--
Maggie

--
Maggie


"Bob Phillips" wrote:

Are you saying that you want #DIV/0 if A1 holds 0 and A2 doesn't, because
that is what Chip's alternative will give you. It seems that Chip's original
is more robust.

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Maggie" wrote in message
...
CHRIS THANK YOU FOR YOUR RESPONCE HOWEVER, I AM LOOKING FOR THE FOLLOWING.
SORRY FOR THE CONFUSION.

A1=1 AND A2=1 AND WHEN I DIVIDE A1 BY A2 THEN IN A3 I GET 1. HOWEVER, WHEN
BOTH A1 AND A2 EQUAL ZERO THEN I WOULD LIKE A3 TO EQUAL ZERO. SO THERE

STILL
NEEDS TO BE A DIVISION CALCULATION BUT WHEN THEY ARE BOTH ZERO IT WOULD

THEN
BE ZERO IN A3. I HOPE THIS IS MORE CLEAR SOMETIMES I HAVE A HARD TIME

GETTING
MY POINT ACROSS IN AN E-MAIL. THANKS AGAIN FOR YOUR ASSISTANCE.
--
Maggie


"Chip Pearson" wrote:

Maggie,

Try a formula like

=IF(A2=0,0,A1/A2)


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Maggie" wrote in message
...
My formula is A1/A2 however if they are both Zero values it is
producing the
#DIV/O! If there are Zeros in A1 and A2 how do I get the
product to also be
Zero in A3?


--
Maggie







Bob Phillips

Zero values in formula
 
PLEASE DON'T SHOUT. I READ SENTENCE CASE MUCH BETTER THAN UPPER CASE.

Both of Chip's formulae do what you state. The second will give #DIV/0 if A1
is 0.

Tell us what is wrong with what Chip gave you, with what I gave you, what RD
gave you.

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Maggie" wrote in message
...
YOU FOR YOUR RESPONCE HOWEVER, I AM LOOKING FOR THE FOLLOWING.
SORRY FOR THE CONFUSION.

A1=1 AND A2=1 AND WHEN I DIVIDE A1 BY A2 THEN IN A3 I GET 1. HOWEVER, WHEN
BOTH A1 AND A2 EQUAL ZERO THEN I WOULD LIKE A3 TO EQUAL ZERO. SO THERE

STILL
NEEDS TO BE A DIVISION CALCULATION BUT WHEN THEY ARE BOTH ZERO IT WOULD

THEN
BE ZERO IN A3. I HOPE THIS IS MORE CLEAR SOMETIMES I HAVE A HARD TIME

GETTING
MY POINT ACROSS IN AN E-MAIL. THANKS AGAIN FOR YOUR ASSISTANCE.
--
Maggie

--
Maggie


"Bob Phillips" wrote:

Are you saying that you want #DIV/0 if A1 holds 0 and A2 doesn't,

because
that is what Chip's alternative will give you. It seems that Chip's

original
is more robust.

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Maggie" wrote in message
...
CHRIS THANK YOU FOR YOUR RESPONCE HOWEVER, I AM LOOKING FOR THE

FOLLOWING.
SORRY FOR THE CONFUSION.

A1=1 AND A2=1 AND WHEN I DIVIDE A1 BY A2 THEN IN A3 I GET 1. HOWEVER,

WHEN
BOTH A1 AND A2 EQUAL ZERO THEN I WOULD LIKE A3 TO EQUAL ZERO. SO THERE

STILL
NEEDS TO BE A DIVISION CALCULATION BUT WHEN THEY ARE BOTH ZERO IT

WOULD
THEN
BE ZERO IN A3. I HOPE THIS IS MORE CLEAR SOMETIMES I HAVE A HARD TIME

GETTING
MY POINT ACROSS IN AN E-MAIL. THANKS AGAIN FOR YOUR ASSISTANCE.
--
Maggie


"Chip Pearson" wrote:

Maggie,

Try a formula like

=IF(A2=0,0,A1/A2)


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Maggie" wrote in message
...
My formula is A1/A2 however if they are both Zero values it is
producing the
#DIV/O! If there are Zeros in A1 and A2 how do I get the
product to also be
Zero in A3?


--
Maggie










All times are GMT +1. The time now is 05:31 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com