IF(ISBLANK(Cell#," ",(Cell#)) Question

coffmant80

New Member
Joined
Aug 17, 2022
Messages
6
Office Version
  1. 365
Platform
  1. Windows
Good evening thanks for the add, I'm pretty new to using more advance formulas & VBA.

My question is as follows,

How would you calculate a formula to ignore the blank cell (or a hidden row* preferably), Ex. you have a cell further down at row 15 you would like to calculate.

Gray are is a time conversion of mins which is being used in the current formula = P105

I'm using the following formulas currently;

M11 O11 Q11
15 / =IF(ISBLANK(M11)," ",(Q9)) / =IF(ISBLANK(M11)," ",O11+P105)


1660768985083.png
1660766945529.png



Thank you in advance for the help also.
 

Attachments

  • 1660766672035.png
    1660766672035.png
    2.8 KB · Views: 2
  • 1660767089421.png
    1660767089421.png
    2.9 KB · Views: 3
  • 1660767682997.png
    1660767682997.png
    3.8 KB · Views: 2

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Welcome to the Board!

Any cell that has any formula or the value " " (single space) in it is NOT blank.
Better to return an empty string ("") instead of a single space (" ").

If you use the empty string, then you can just check the length of the value in the cell, i.e.
Excel Formula:
=IF(LEN(M11)=0,"",R9)
and
Excel Formula:
=IF(LEN(M11)=0,"",O11+P105)
 
Upvote 0
Welcome to the Board!

Any cell that has any formula or the value " " (single space) in it is NOT blank.
Better to return an empty string ("") instead of a single space (" ").

If you use the empty string, then you can just check the length of the value in the cell, i.e.
Excel Formula:
=IF(LEN(M11)=0,"",R9)
and
Excel Formula:
=IF(LEN(M11)=0,"",O11+P105)
Thank you for the information,

That helped with the #value!

I have another question if it's possible,

Say we don't want to delete any rows, but we hide row 3 in the image. Is it possible to have a formula or VBA to ignore the hidden row and have the calculation continue at row 4?

1660781326507.png


Thank you again for your response.
 
Upvote 0
Thank you for the information,

That helped with the #value!

I have another question if it's possible,

Say we don't want to delete any rows, but we hide row 3 in the image. Is it possible to have a formula or VBA to ignore the hidden row and have the calculation continue at row 4?

View attachment 71871

Thank you again for your response.
That is a whole different, brand new question, and as such, should be posted in a new thread so it appears as a new unanswered question.
 
Upvote 0
That is a whole different, brand new question, and as such, should be posted in a new thread so it appears as a new unanswered question.
Thank you for the information, I'll start a new thread sir
 
Upvote 0

Forum statistics

Threads
1,214,926
Messages
6,122,306
Members
449,079
Latest member
juggernaut24

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