Please Note: This article is written for users of the following Microsoft Excel versions: 97, 2000, 2002, and 2003. If you are using a later version (Excel 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Excel, click here: Finding Rows with Values in Two Columns.
Adri has a worksheet that has quite a few data records in it (well over 40,000). Two of the columns on each row are supposed to be mutually exclusive—a value can be in column F or in column G, but a value should not be in column F and column G. Adri need a quick way to find any records in which there is a value in both columns F and G so she can rectify these erroneous entries.
The key here is the phrase "on each row." Audri wants to simply look at column F and G on any given row and make sure that there aren't values (any values) in both F and G. Understanding this, there are a number of different ways you can proceed. An easy way is to add a simple formula to column H, such as this:
=COUNTA(F2:G2)
Assuming you place this formula in cell H2 (just to the right of the cells being examined), the result will be either 0, 1, or 2. If both F2 and G2 are empty, then the result is 0; if either F2 or G2 is empty, then the result is 1; and if neither F2 or G2 is empty, then the result is 2. You can easily sort or filter by the results in column H to find those rows that don't have the proper count.
If you prefer a textual indicator in column H, you can use a formula such as this:
=IF(ISBLANK(F2)+ISBLANK(G2)<>1,"Error","OK")
This formula displays "Error" if there is either nothing in F and G or something in both F and G. It only displays "OK" if there is something in either F or G. With the formula in place, you can easily sort or filter to find the errant rows.
Speaking of filters, you can easily apply an AutoFilter that will show you only those rows that have something in both columns F and G. Turn on the AutoFilter tool, and then click the down-arrow at the top of column F. In the resulting drop-down list, choose Show Nonblanks. The number of rows displayed on the screen is reduced according to this specification. When you apply the same criteria to column G, what you are left with is only those rows with non-blank values in both F and G. (If you also want to check those which have nothing in both F and G, you can select Show Blanks for both column F and G.)
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (10628) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Finding Rows with Values in Two Columns.
Excel Smarts for Beginners! Featuring the friendly and trusted For Dummies style, this popular guide shows beginners how to get up and running with Excel while also helping more experienced users get comfortable with the newest features. Check out Excel 2013 For Dummies today!
The drop-down arrow used at the top of columns by AutoFilter can be difficult to see. Here's a way you can reduce the ...
Discover MoreWant a tool that will help you toggle AutoFilter on and off? Excel provides some tools you can use, but you need to be ...
Discover MoreApply an AutoFilter to a worksheet, and you can quickly forget exactly what that AutoFilter entailed. Here are a couple ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments