Is there a way to have a cell, which contains a formula, be classed as a blank cell?

baljeetgrover

New Member
Joined
Apr 2, 2016
Messages
5
I am creating excel file in which i want to calculate my online orders to generate profit report. i am getting #value error. I want "L" cell to remain blank if "J" is blank. I know if cell contains formula then it is not considered as blank. Please tell me how can i solve this issue.

Is there a way to have a cell, which contains a formula, be classed as a blank cell?

Or which formula i should use in Cell "L" to keep it blank until i there is numeric value in cell "J" ?
Excel%20Help_zpsyulqmnie.png

 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Hi,

The problem is not the cell having a formula, the problem is your formula had put a SPACE " " in the cell, therefore it's not blank, correct your formulas as follows, then you should be fine:

=IF(ISBLANK($I3),"",(G3-H3-I3))
=IF(ISBLANK($J3),"",(J3-K3))
 
Last edited:
Upvote 0
Actually also change them like so:

=IF($I3="","",(G3-H3-I3))
=IF($J3="","",(J3-K3))
 
Upvote 0
You're welcome, welcome to the forum.
 
Upvote 0
What if you want a zero to be considered as $0.00 in the formula?

I need to show it as $0.00, but if I write "$0.00), the column next to it with a simple "If" formula saying if both columns match put in "Y', if not put in "N" always gives me "N". if I put "0" on the formula, it doesn't write it as $0.00 and the currency format won't work. Any help?
 
Upvote 0

Forum statistics

Threads
1,223,101
Messages
6,170,116
Members
452,302
Latest member
TaMere

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