» Creating Formulas that Only Return Results from Non-Blank Cells
CATEGORY - Excel Formula and Function
VERSION - All Microsoft Excel Versions
We want to create a formula that only returns a result from the non-blank cells in List1.
Solution:
Use the ISBLANK function as shown in the following formula:
=IF(ISBLANK(A2)=FALSE,A2,"")
To return text values only, use the ISTEXT function as shown in the following formula:
=IF(ISTEXT(A2),A2,"")
To return numeric values only, use the ISNUMBER function as shown in the following formula:
=IF(ISNUMBER(A2),A2,"")

Book Store:
Recommended Books:
- The Essential 55: An Award-Winning Educator's Rules for Discovering the Successful Student in Every Child
- Special Edition Using Microsoft Outlook 2002
- Microsoft Excel Version 2002 Step by Step
- Harry Potter and the Order of the Phoenix (Book 5)
- Accounting the Easy Way
- Investing for Dummies, Third Edition
No comments have been submitted.

