I've searched everywhere! The COUNTIF/COUNTA isn't what I need. The spreadsheet is like this:
example
Column N has a formula to return Col D's value if Column B has 10 numbers in it:
example:
This works great and it returns the proper char count.
However, whenever there isn't a name to return, Column O returns a '1' when the cell is blank.
What I'm looking for is for it to return nothing at all and I can't seem to find why it's returning a '1'.
Thank you for your time.
example
Code:
[B]Column D Col N Col O[/B]
Name/Description External calling name Char Count
Bobby Bobby 5
Column N has a formula to return Col D's value if Column B has 10 numbers in it:
example:
Code:
=IF(LEN($B36)=10,$N$34,"")
This works great and it returns the proper char count.
However, whenever there isn't a name to return, Column O returns a '1' when the cell is blank.
What I'm looking for is for it to return nothing at all and I can't seem to find why it's returning a '1'.
Thank you for your time.