Okay, Mike, here's how you do it. In your top data row on June1.xls, in any column, enter =VLOOKUP( and press the equals (=) button to start the equation wizard. Here are the boxes you'll have to fill in:
Lookup Value: This is the customer name you'll be searching for. It'll probably be C2 for your first row.
Table_Array: This is where the formula will look for the lookup value you specified in the previous step. Click on your June8.xls spreadsheet and select the column containing the customer names. You can select more columns to the right of the names, but it will only search in the leftmost column.
Column Index Number: This is the column from your table array that the formula will return the value from if it finds a match. The leftmost column will be 1 (even if your table array starts in column C). If your table array is only one column wide, just enter 1.
Range Lookup: Enter either FALSE or TRUE here. If you enter TRUE, the formula will accept less-than-exact matches. I almost always set this to FALSE.
Your equation will look something like this:
=VLOOKUP(C2,[June8.xls]Sheet1!$C$2:$D$44,1,FALSE)
Use the autofill feature to fill the formula into every row that contains a customer name on your June1.xls spreadsheet.
The way I set up this formula, it will return the customer's name if it finds a match. So if you have Joe Smith in C2 and it finds a match, the formula will return Joe Smith. You can make the formula return something like "New Customer," but that requires a more complicated formula:
=IF(ISNA(VLOOKUP(C2,[June8.xls]Sheet1!$C$2:$D$44,1,FALSE)),"New Customer","")
Good luck,
-Ben
I am a novice so hopefully you can help me.