Determine "Blank" cell even if formula is entered

gtd526

Well-known Member
Joined
Jul 30, 2013
Messages
657
Office Version
  1. 2019
Platform
  1. Windows
Hello,

I need to alter $H4>0.1 (in I4 and I5) so if the cell(H:H) is blank then it doesn't populate.
I tried ISTEXT, but it doesn't work.
below is what I'm working with...

NFL.xlsm
HI
2PickATS
3
4 5
5 -5
6 
7ATL10
Weekly Picks
Cell Formulas
RangeFormula
H4H4=IFERROR(IF(AND($A4=$AY4,IFERROR($BA4>=0.6,TRUE),IFERROR($BB4>=0.6,TRUE),IFERROR($BC4>=0.525,TRUE),IFERROR($BD4>=0.525,TRUE),$AU4=$AY$4),$A4,""),"")
H5H5=IFERROR(IF(AND($A5=$AY5,IFERROR($BA5>=0.6,TRUE),IFERROR($BB5>=0.6,TRUE),IFERROR($BC5>=0.525,TRUE),IFERROR($BD5>=0.525,TRUE),$AU5=$AY$5),$A5,""),"")
I4,I6:I7I4=IF(AND($F4="",$H4>0.1),$B4,"")
I5I5=IF(AND($F5="",ISTEXT($H5)),$B5,"")
Cells with Conditional Formatting
CellConditionCell FormatStop If True
H4:I35Celldoes not contain a blank value textNO
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Use Isnumber rather than Istext
 
Upvote 0
Use Isnumber rather than Istext
ISNUMBER works if the cell is blank. What about when its populated from the formula (I5)?


NFL.xlsm
HI
2PickATS
3
4  
5TB 
6 
7 
Weekly Picks
Cell Formulas
RangeFormula
H4H4=IFERROR(IF(AND($A4=$AY4,IFERROR($BA4>=0.6,TRUE),IFERROR($BB4>=0.6,TRUE),IFERROR($BC4>=0.525,TRUE),IFERROR($BD4>=0.525,TRUE),$AU4=$AY$4),$A4,""),"")
H5H5=IFERROR(IF(AND($A5=$AY5,IFERROR($BA5>=0.6,TRUE),IFERROR($BB5>=0.6,TRUE),IFERROR($BC5>=0.525,TRUE),IFERROR($BD5>=0.525,TRUE),$AU5=$AY$5),$A5,""),"")
I4:I7I4=IF(AND($F4="",ISNUMBER($H4)),$B4,"")
Cells with Conditional Formatting
CellConditionCell FormatStop If True
H4:I35Celldoes not contain a blank value textNO
 
Upvote 0
Maybe
Excel Formula:
=IF(AND($F5="",$H5<>""),$B5,"")
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,523
Messages
6,120,031
Members
448,940
Latest member
mdusw

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