Return Blank

Bedford

Active Member
Joined
Feb 3, 2015
Messages
316
Office Version
  1. 365
Platform
  1. MacOS
Hoping for a solution. I'm using this formula, =IFERROR(Q981+$N$4,0) to add contents of N4 to Q981 in destination cell O981, but if Q981 is empty, O981 returns the value from N4. How can I stop O981 from returning a value if Q981 is empty.
Thank you in advance.
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Is this what you mean?

Excel Formula:
=IF(Q981="","",IFERROR(Q981+$N$4,0))
 
Upvote 0
Try

Excel Formula:
=IF(Q981="","",Q981+$N$4)
 
Upvote 0
That suggests that Q981 isn't actually empty, so what is in it?
True enough, it has it's own formula; =V981*$Q$4, I did fail to mention that. However when Q981 doesn't return the result of the formula due to the precedent cell V981 being empty, it returns the value in N4. I'm hoping to get to a point where it remains blank when the resulting formula in Q981 is likewise blank due to V981 being empty.
A bit of a dog chasing it's tail?
 
Upvote 0
In that case try
Excel Formula:
=IF(Q981=0,"",IFERROR(Q981+$N$4,0))
or
Excel Formula:
=IF(V981="","",IFERROR(Q981+$N$4,0))
 
Upvote 0
Solution
In that case try
Excel Formula:
=IF(Q981=0,"",IFERROR(Q981+$N$4,0))
or
Excel Formula:
=IF(V981="","",IFERROR(Q981+$N$4,0))
Excellent! The first one works, the second one using the V981 doesn't work, thank you very much for your assistance.
 
Upvote 0
Glad we could help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,215,745
Messages
6,126,636
Members
449,324
Latest member
AmirMalik

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