Variance if both cells are zero or if > zero

JustDebbie5

New Member
Joined
Mar 17, 2023
Messages
7
Office Version
  1. 2016
Platform
  1. Windows
Every quarter, I review the variances between the current and previous quarters. I need two parts to a formula to review these accurately, and I don't know how to write it. If both quarters are zero, then I would like the variance percentage to populate 0%. But if both quarters are >0, then populate appropriate percentage. This obviously isn't the appropriate formula, but it would be something like IF P6=0 and Q6=0, then 0%; IF P6>0 and Q6>0, then (Q6-P6)/P6. Any suggestions or help would be greatly appreciated. Thank you.
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
What if one is zero and second is not a zero?

Try if this works:
Excel Formula:
=IF(P6*Q6,(Q6-P6)/P6,)
 
Last edited:
Upvote 0
Do you have any suggestions how if the previous quarter was zero? Perhaps populate text that says "Divide by Zero Error"? If current quarter is zero, then I would like it to calculate/populate a negative variance. Thanks for any help.
 
Upvote 0
try this:
Book1
OPQR
5Period1Period2
60.00%0.00%0.00%
70.00%5.00%DIV/0 Error
83.00%0.00%-100.00%
93.00%5.00%66.67%
Sheet1
Cell Formulas
RangeFormula
R6:R9R6=IF(AND(P6=0,Q6=0),0,IF(P6=0,"DIV/0 Error",(Q6-P6)/P6))
 
Upvote 0
Upvote 0
@JustDebbie5 , my second post (Post #5) answers your division by zero question.
Awoohaw, with your formula, I discovered that if a cell in column Q (the current quarter) is blank, the variance is still showing as 0%, which wouldn't be accurate or draw my attention to research. Is there a way that if the cell were blank, the variance would show -100% or something to bring it to my attention to review? Thanks again for all your help today.
 
Upvote 0
Awoohaw, with your formula, I discovered that if a cell in column Q (the current quarter) is blank, the variance is still showing as 0%, which wouldn't be accurate or draw my attention to research. Is there a way that if the cell were blank, the variance would show -100% or something to bring it to my attention to review? Thanks again for all your help today.
Isn't that what is done in cell R8?
Or we could do just like when Column Q is zero... type something like "Not enough Data"?
 
Upvote 1

Forum statistics

Threads
1,214,832
Messages
6,121,841
Members
449,051
Latest member
excelquestion515

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top