V
vew
How do I create an If, then statement with the condition a blank cell
Jacob Skaria said:You mean
=IF(ISBLANK(A1),"True Condition","False Condition")
If this post helps click Yes
vew said:I am dense today. I could not seem to get your formula correct. How do I
say if this cell is blank, show needed, else show reported?
=IF(FACDS/BSC/RPT/Customer/Measure Reporting/[Calls Answered.xls]09-3 Entry
Form'!$A$8:$E$8 = ??, "Needed", "Reported")
Sam Wilson said:=IF(ISBLANK("A1"),"True Condition","False Condition")
Sam
"vew" wrote:
vew said:I am dense today. I could not seem to get your formula correct. How do I
say if this cell is blank, show needed, else show reported?
=IF(FACDS/BSC/RPT/Customer/Measure Reporting/[Calls Answered.xls]09-3 Entry
Form'!$A$8:$E$8 = ??, "Needed", "Reported")
Sam Wilson said:=IF(ISBLANK("A1"),"True Condition","False Condition")
Sam
"vew" wrote:
Sam Wilson said:That's not a cell, it's a range of cells... What do you want it do? If all of
them are blank show "Needed", or do you want to restircit to say if A8 is
blank?
For the latter, it's:
=IF(ISBLANK(FACDS/BSC/RPT/Customer/Measure Reporting/[Calls
Answered.xls]'09-3 Entry Form'!$A$8),"True Condition","False Condition")
vew said:I am dense today. I could not seem to get your formula correct. How do I
say if this cell is blank, show needed, else show reported?
=IF(FACDS/BSC/RPT/Customer/Measure Reporting/[Calls Answered.xls]09-3 Entry
Form'!$A$8:$E$8 = ??, "Needed", "Reported")
Sam Wilson said:=IF(ISBLANK("A1"),"True Condition","False Condition")
Sam
"vew" wrote:How do I create an If, then statement with the condition a blank cell
Jacob Skaria said:For multiple cells try
=IF(COUNTBLANK($A$8:$E$8)=5,"Needed","Reported")
If this post helps click Yes
---------------
Jacob Skaria
vew said:I am dense today. I could not seem to get your formula correct. How do I
say if this cell is blank, show needed, else show reported?
=IF(FACDS/BSC/RPT/Customer/Measure Reporting/[Calls Answered.xls]09-3 Entry
Form'!$A$8:$E$8 = ??, "Needed", "Reported")
Sam Wilson said:=IF(ISBLANK("A1"),"True Condition","False Condition")
Sam
"vew" wrote:How do I create an If, then statement with the condition a blank cell
vew said:This is a merged cell. Should the count be 1 or 5?
Jacob Skaria said:For multiple cells try
=IF(COUNTBLANK($A$8:$E$8)=5,"Needed","Reported")
If this post helps click Yes
---------------
Jacob Skaria
vew said:I am dense today. I could not seem to get your formula correct. How do I
say if this cell is blank, show needed, else show reported?
=IF(FACDS/BSC/RPT/Customer/Measure Reporting/[Calls Answered.xls]09-3 Entry
Form'!$A$8:$E$8 = ??, "Needed", "Reported")
:
=IF(ISBLANK("A1"),"True Condition","False Condition")
Sam
:
How do I create an If, then statement with the condition a blank cell
vew said:I am dense today. I could not seem to get your formula correct. How do I
say if this cell is blank, show needed, else show reported?
=IF(FACDS/BSC/RPT/Customer/Measure Reporting/[Calls Answered.xls]09-3
Entry
Form'!$A$8:$E$8 = ??, "Needed", "Reported")
Sam Wilson said:=IF(ISBLANK("A1"),"True Condition","False Condition")
Sam
"vew" wrote: