+ Reply to Thread
Results 1 to 14 of 14

Difference in look alike cells

  1. #1
    Forum Contributor
    Join Date
    01-20-2014
    Location
    Greece
    MS-Off Ver
    20 yr. old Excel 2002!
    Posts
    710

    Difference in look alike cells

    Can you help me find out where is the difference?
    In formula auditing one looks italic but the cell format is the same.
    I pasted the data from and xml file.
    Attached Images Attached Images
    Attached Files Attached Files

  2. #2
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,929

    Re: Difference in look alike cells

    hmm thats got me. Comparing letter for letter, the only 2 that match are the 1st character and the space...
    A
    B
    C
    D
    E
    F
    G
    H
    I
    J
    1
    body Len
    1
    2
    3
    4
    5
    6
    7
    2
    ?APE ME
    FALSE
    7
    TRUE
    FALSE
    FALSE
    FALSE
    TRUE
    FALSE
    FALSE
    3
    ???? ??
    7
    ? A P E M E


    For a letter-by-letter comparison, I used...
    =MID($A2,D$1,1)=MID($A3,D$1,1)

    It is probably something glaringly simple, but I just cant see it - I will push this to the other experts.
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  3. #3
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,929

    Re: Difference in look alike cells

    Interesting...the copy almost comes through on the 1st instance, but errors on the 2nd 1???????

    Pulling out each letter from both lines...
    A
    B
    C
    D
    E
    F
    G
    H
    I
    J
    1
    body Len
    1
    2
    3
    4
    5
    6
    7
    2
    ?APE ME
    FALSE
    7
    TRUE
    FALSE
    FALSE
    FALSE
    TRUE
    FALSE
    FALSE
    3
    ???? ??
    7
    ? A P E M E
    4
    ? ? ? ? ? ?

  4. #4
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,929

    Re: Difference in look alike cells


    CODE pulls out weird returns for the 2nd row...

    A
    B
    C
    D
    E
    F
    G
    H
    I
    J
    1
    body Len
    1
    2
    3
    4
    5
    6
    7
    2
    ?APE ME
    FALSE
    7
    TRUE
    FALSE
    FALSE
    FALSE
    TRUE
    FALSE
    FALSE
    3
    ???? ??
    7
    ? A P E M E
    4
    ? ? ? ? ? ?
    5
    6
    Code
    63
    65
    80
    69
    32
    77
    69
    7
    Code
    63
    63
    63
    63
    32
    63
    63

  5. #5
    Forum Guru
    Join Date
    03-02-2006
    Location
    Los Angeles, Ca
    MS-Off Ver
    WinXP/MSO2007;Win10/MSO2016
    Posts
    12,604

    Re: Difference in look alike cells

    lower case A2: πape me
    lower case A3: παρε με
    Greek??



    AscW(A2)= 928 65 80 69 32 77 69
    AscW(A3)= 928 913 929 917 32 924 917
    Last edited by protonLeah; 01-30-2022 at 05:44 PM.
    Ben Van Johnson

  6. #6
    Forum Expert
    Join Date
    08-17-2007
    Location
    Poland
    Posts
    2,216

    Re: Difference in look alike cells

    Run this code:
    Please Login or Register  to view this content.
    Artik

  7. #7
    Forum Contributor
    Join Date
    01-20-2014
    Location
    Greece
    MS-Off Ver
    20 yr. old Excel 2002!
    Posts
    710

    Re: Difference in look alike cells

    Yes, both are supposed to be Greek.
    Changing the case, A3 correctly displays the phrase but in A2 only the first character is Greek which is strange because one would not change language in the middle of a word.
    In order to dup that in CAPS, one would change the language to Greek, type the first letter and then change the language to English and type the rest! Unimaginable!
    Otherwise A2 in small case would be "pape me" instead of "πape me"

  8. #8
    Forum Expert Greg M's Avatar
    Join Date
    08-16-2007
    Location
    Dublin. Ireland
    MS-Off Ver
    Office 2016
    Posts
    4,481

    Re: Difference in look alike cells

    Hi All,


    but in A2 only the first character is Greek


    Maybe: "only the first character looks Greek"?


    Just for information:

    Like the other contributors here I did a character-by-character comparison and found that the only "equals" were the Pi and the space characters - so I looked at the Character Map.

    Lo and behold, identical looking characters appear in the sets both of the Roman characters and also of the Greek characters.

    One at a time, I copied the Greek characters A, P, E and M, E into the first cell (A2), and one by one the character comparisons appeared as equal.

    Maybe the problem arose as a result of different keyboards being used to enter the data in each cell?

    Hope this helps.

    Regards,

    Greg M
    Last edited by Greg M; 01-31-2022 at 10:51 AM. Reason: Quotation added

  9. #9
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    43,996

    Re: Difference in look alike cells

    drgkt... you will not be able to open my file, but others will.

    In A2, only the first character belongs to the UNICODE set for Greek/Coptic characters.

    In A3, all of the characters are from the Greek Unicode set. That is why they are not the same.

    So, Greg's right. Only the A3 text is truly Greek. A2 is Greenglish....
    Attached Images Attached Images
    Attached Files Attached Files
    Glenn




    None of us get paid for helping you... we do this for fun. So DON'T FORGET to say "Thank You" to all who have freely given some of their time to help YOU.

    Temporary addition of accented to illustrate ongoing problem to the TT: L? fh?ile P?draig sona dhaoibh

  10. #10
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,929

    Re: Difference in look alike cells

    Thanks for the assist, guys

  11. #11
    Forum Contributor
    Join Date
    01-20-2014
    Location
    Greece
    MS-Off Ver
    20 yr. old Excel 2002!
    Posts
    710

    Re: Difference in look alike cells

    I wish to thank all participants.

    For background purposes, I would like to share with you how tis came about.
    This is an outgoing SMS record that was backed up by MPE to my PC.
    In doing a duplicates check I noticed that this one was listed twice and was not considered duplicate.

    I still do not know how it happened, maybe because the cellphone uses UNIX and UTF-8?
    Other records were not affected.
    Even if I (in sending the message) typed the first character in Greek and the rest in english, there should still be one single record.

    God knows... and God bless !!!

  12. #12
    Forum Expert Greg M's Avatar
    Join Date
    08-16-2007
    Location
    Dublin. Ireland
    MS-Off Ver
    Office 2016
    Posts
    4,481

    Re: Difference in look alike cells

    Hi again,

    Many thanks for your feedback.

    You're welcome - glad I was able to help.

    Regards,

    Greg M

  13. #13
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: Difference in look alike cells

    The joys of multiple standards.

    Text Encoding
    Date Format
    Units of Measure
    Currency
    etc

    Keeps us in work, though
    let Source = #table({"Question","Thread", "User"},{{"Answered","Mark Solved", "Add Reputation"}}) in Source

    If I give you Power Query (Get & Transform Data) code, and you don't know what to do with it, then CLICK HERE

    Walking the tightrope between genius and eejit...

  14. #14
    Forum Contributor
    Join Date
    01-20-2014
    Location
    Greece
    MS-Off Ver
    20 yr. old Excel 2002!
    Posts
    710

    Re: Difference in look alike cells

    Quote Originally Posted by protonLeah View Post
    AscW(A2)=...
    By the way, what is the formula for getting AscW(X#)?

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Fuzzy look up or alike
    By Badvgood in forum Excel General
    Replies: 1
    Last Post: 10-11-2018, 11:31 AM
  2. Align alike cells in different columns and add blanks where necessary
    By EllyKRae in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-26-2013, 03:25 PM
  3. How to use a lookup table that will add alike numbers
    By CJohnston in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 08-22-2012, 04:10 PM
  4. vlook-alike
    By Jonathan78 in forum Excel General
    Replies: 1
    Last Post: 10-22-2009, 02:29 AM
  5. character returns (or alike) in cell
    By garyxprice in forum Excel General
    Replies: 2
    Last Post: 01-05-2007, 04:34 PM
  6. Excel DB alike?
    By SEOJAPAN in forum Excel General
    Replies: 3
    Last Post: 04-11-2005, 10:08 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1