Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
ED2 ED2 is offline
external usenet poster
 
Posts: 14
Default Duplicate Values in Excel 2007

I have successful Vlookup formulas and duplicate values between multiple
columns in a multipage spreadsheet. However, when I try to compare by
duplicate value a third set of 2 columns, Excel 2007 sees the entries as
unique while they are clearly duplicates. The only thing I see different in
this comparison over the other column comparisons is that I am using a
formula =LEFT(J3, SEARCH(" ",J3,SEARCH(" ",J3,1)+1)) in one of the columns.
Any suggestions?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Duplicate Values in Excel 2007

Venturing some thoughts. It could be just data inconsistency issues throwing
apparent duplicates recognition off. Eg: extraneous white spaces somewhere
which are hard-to-see/detect. Try TRIM to handle this, try replacing "J3"
with TRIM(J3) in your LEFT expression. Another possibility is text numbers
are being compared with equivalent real numbers. The comparison will fail.
LEFT per se will return "nums" as text numbers. You could try a "+0" to
coerce it to real numbers to enable correct matching, eg: LEFT(...)+0
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:27,000 Files:200 Subscribers:70
xdemechanik
---
"Ed2" wrote:
I have successful Vlookup formulas and duplicate values between multiple
columns in a multipage spreadsheet. However, when I try to compare by
duplicate value a third set of 2 columns, Excel 2007 sees the entries as
unique while they are clearly duplicates. The only thing I see different in
this comparison over the other column comparisons is that I am using a
formula =LEFT(J3, SEARCH(" ",J3,SEARCH(" ",J3,1)+1)) in one of the columns.
Any suggestions?

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
ED2 ED2 is offline
external usenet poster
 
Posts: 14
Default Duplicate Values in Excel 2007

Thank you Max. I have actually checked for spaces and text/numbers
differentials. I tried the TRIM idea anyway but to no avail.

"Max" wrote:

Venturing some thoughts. It could be just data inconsistency issues throwing
apparent duplicates recognition off. Eg: extraneous white spaces somewhere
which are hard-to-see/detect. Try TRIM to handle this, try replacing "J3"
with TRIM(J3) in your LEFT expression. Another possibility is text numbers
are being compared with equivalent real numbers. The comparison will fail.
LEFT per se will return "nums" as text numbers. You could try a "+0" to
coerce it to real numbers to enable correct matching, eg: LEFT(...)+0
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:27,000 Files:200 Subscribers:70
xdemechanik
---
"Ed2" wrote:
I have successful Vlookup formulas and duplicate values between multiple
columns in a multipage spreadsheet. However, when I try to compare by
duplicate value a third set of 2 columns, Excel 2007 sees the entries as
unique while they are clearly duplicates. The only thing I see different in
this comparison over the other column comparisons is that I am using a
formula =LEFT(J3, SEARCH(" ",J3,SEARCH(" ",J3,1)+1)) in one of the columns.
Any suggestions?

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,240
Default Duplicate Values in Excel 2007

Try Tools / Formula Auditing / Evaluate Formula and see if each section of your
formula evaluates as you expect it to.

Ed2 wrote:
Thank you Max. I have actually checked for spaces and text/numbers
differentials. I tried the TRIM idea anyway but to no avail.

"Max" wrote:

Venturing some thoughts. It could be just data inconsistency issues throwing
apparent duplicates recognition off. Eg: extraneous white spaces somewhere
which are hard-to-see/detect. Try TRIM to handle this, try replacing "J3"
with TRIM(J3) in your LEFT expression. Another possibility is text numbers
are being compared with equivalent real numbers. The comparison will fail.
LEFT per se will return "nums" as text numbers. You could try a "+0" to
coerce it to real numbers to enable correct matching, eg: LEFT(...)+0
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:27,000 Files:200 Subscribers:70
xdemechanik
---
"Ed2" wrote:
I have successful Vlookup formulas and duplicate values between multiple
columns in a multipage spreadsheet. However, when I try to compare by
duplicate value a third set of 2 columns, Excel 2007 sees the entries as
unique while they are clearly duplicates. The only thing I see different in
this comparison over the other column comparisons is that I am using a
formula =LEFT(J3, SEARCH(" ",J3,SEARCH(" ",J3,1)+1)) in one of the columns.
Any suggestions?

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
ED2 ED2 is offline
external usenet poster
 
Posts: 14
Default Duplicate Values in Excel 2007

Glenn, Thank you for your response. As I've stepped through randomly chosen
lines of the formulas =LEFT(J3, SEARCH(" ",J3,SEARCH(" ",J3,1)+1)) and the
formulas =VLOOKUP(BB_Users!$A1,BB_Users!$A$1:$L$2000,1,FALS E) they are
working fine. As I visually check the results, they are also fine. What is
really perplexing is that when I apply a conditional formula to the columns
it recognizes that they are unique and highlights them and it is consistant
for the 700 lines throughout the column.

"Glenn" wrote:

Try Tools / Formula Auditing / Evaluate Formula and see if each section of your
formula evaluates as you expect it to.

Ed2 wrote:
Thank you Max. I have actually checked for spaces and text/numbers
differentials. I tried the TRIM idea anyway but to no avail.

"Max" wrote:

Venturing some thoughts. It could be just data inconsistency issues throwing
apparent duplicates recognition off. Eg: extraneous white spaces somewhere
which are hard-to-see/detect. Try TRIM to handle this, try replacing "J3"
with TRIM(J3) in your LEFT expression. Another possibility is text numbers
are being compared with equivalent real numbers. The comparison will fail.
LEFT per se will return "nums" as text numbers. You could try a "+0" to
coerce it to real numbers to enable correct matching, eg: LEFT(...)+0
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:27,000 Files:200 Subscribers:70
xdemechanik
---
"Ed2" wrote:
I have successful Vlookup formulas and duplicate values between multiple
columns in a multipage spreadsheet. However, when I try to compare by
duplicate value a third set of 2 columns, Excel 2007 sees the entries as
unique while they are clearly duplicates. The only thing I see different in
this comparison over the other column comparisons is that I am using a
formula =LEFT(J3, SEARCH(" ",J3,SEARCH(" ",J3,1)+1)) in one of the columns.
Any suggestions?




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
ED2 ED2 is offline
external usenet poster
 
Posts: 14
Default Duplicate Values in Excel 2007

Max, Thank you. You're solution of the Trim function worked....I was
misusing the function. =TRIM(LEFT(J3,SEARCH(" ",J3,SEARCH(" ",J3,1)+1)))
solved the problem. Thank you again


"Max" wrote:

Venturing some thoughts. It could be just data inconsistency issues throwing
apparent duplicates recognition off. Eg: extraneous white spaces somewhere
which are hard-to-see/detect. Try TRIM to handle this, try replacing "J3"
with TRIM(J3) in your LEFT expression. Another possibility is text numbers
are being compared with equivalent real numbers. The comparison will fail.
LEFT per se will return "nums" as text numbers. You could try a "+0" to
coerce it to real numbers to enable correct matching, eg: LEFT(...)+0
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:27,000 Files:200 Subscribers:70
xdemechanik
---
"Ed2" wrote:
I have successful Vlookup formulas and duplicate values between multiple
columns in a multipage spreadsheet. However, when I try to compare by
duplicate value a third set of 2 columns, Excel 2007 sees the entries as
unique while they are clearly duplicates. The only thing I see different in
this comparison over the other column comparisons is that I am using a
formula =LEFT(J3, SEARCH(" ",J3,SEARCH(" ",J3,1)+1)) in one of the columns.
Any suggestions?

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Duplicate Values in Excel 2007

Good to hear, Ed2. Pl take a moment to press the YES button (like the one
below) in all responses which helped.
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:27,000 Files:200 Subscribers:70
xdemechanik
---
"Ed2" wrote:
Max, Thank you. You're solution of the Trim function worked....I was
misusing the function. =TRIM(LEFT(J3,SEARCH(" ",J3,SEARCH(" ",J3,1)+1)))
solved the problem. Thank you again


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel error - Highlighting duplicate values Johnson27 Excel Discussion (Misc queries) 2 May 13th 09 04:08 AM
Conditonal Formating Excel 2007 - Duplicate Values jaclh2o Excel Worksheet Functions 0 November 20th 07 04:58 PM
How do I match duplicate numbers/values in Excel? S. Smith Excel Discussion (Misc queries) 0 September 19th 07 09:56 PM
How do I filter out duplicate values in Excel 2000? missy2992 Excel Worksheet Functions 4 November 22nd 05 02:38 PM
Duplicate & Zero Values in Lists (Excel 2003) ksp Excel Worksheet Functions 6 August 10th 05 09:04 AM


All times are GMT +1. The time now is 07:42 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"