ISBlank when the cell contains a formula

sunshinereel2

New Member
Joined
Jul 21, 2016
Messages
9
Need some assistance. Need to have this formula return a " " if there is not a quanity(number) in the cell being referenced. However, the cell being referenced has a formula in it to return needed results so I get a value error. Is there a better way to complete this?

=IF(ISBLANK(M87)," ",M87*N87) is in cell P87

In cell M87 is a formula that is =D87

D87 result is dependent on what is selected in Cell A74.

Any help would be greatly appreciated and please let me know if you have a question to clarify what I am asking.

Thank you and I appreciate your time.
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
You generally don't want to return a space to indicate blank, use an empty string ""

Does this work for you?

=IF(COUNT(M87:N87)=2,M87*N87,"")
 
Upvote 0
Do the two cells actually contain a number?
Is it possible that you are returning a number in quotes (which makes it text) via formula?
 
Upvote 0

Forum statistics

Threads
1,214,872
Messages
6,122,025
Members
449,060
Latest member
LinusJE

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