A formula that till a value in another cell is found remains blank

skeeeter56

New Member
Joined
Nov 26, 2016
Messages
42
Office Version
  1. 2019
Platform
  1. Windows
Cell N13 that contains this formula
=IF(ISBLANK(R6),"",IF(ROUND(O13-K13,2)=0,4,N6/O13))
Cell Q6 contains =SUM(E6:J6) and remains empty till a value is input into Cells E6:J6
I want N13 to remain blank till a value is shown in R6 and then to complete the rest of formula.
I hope this is possible.
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
How about
Excel Formula:
=IF(R6="","",IF(ROUND(O13-K13,2)=0,4,N6/O13))
 
Upvote 0
How about
Excel Formula:
=IF(R6="","",IF(ROUND(O13-K13,2)=0,4,N6/O13))
No I had tried that with no lock.
Here is the result of that
R6 Is blank only has formula in it
no.PNG
 
Upvote 0
What is the formula in R6?
 
Upvote 0
Hi,

Wouldn't =SUM(E6:J6) result in 0 (zero), not Blank, if no values are in E6:J6 ?
 
Upvote 0
In that case you would need to use
Excel Formula:
=IF(R6=0,"",IF(ROUND(O13-K13,2)=0,4,N6/O13))
or simply apply the same custom format to N13 that you have in R6
 
Upvote 0
Solution

Forum statistics

Threads
1,215,136
Messages
6,123,249
Members
449,093
Latest member
Vincent Khandagale

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