Excel-MATCH function doesn't work on pasted values












3














I'm trying to find the positions of the values(text) in one column in another column. I ran the function: =MATCH(B1, A:A, 0) and I get a #N/A result. But this result is incorrect...as I clearly see the value of B1 in column A.



I thought the issue might be with the fact that I pasted the cells into the sheet. So I did a test run where I manually inputed the values in the cells and then ran the function. Result: It worked.... But I sure as hell don't want to manually input all my data.



So my question is...how do I fix this? I've tried pasting the values in all sorts of formats and still no luck. Maybe this is not the issue? I do not know. Suggestions will be greatly appreciated.










share|improve this question
























  • I think that there are spaces (or other invisible characters) in the pasted text, in which case using =MATCH("*"&B1&"*", A:A, 0) should give a match. But that means that the text B1 can be anywhere in the cells you're looking up (* is a wildcard in excel to mean any number of any characters).
    – Jerry
    Sep 20 '13 at 17:45
















3














I'm trying to find the positions of the values(text) in one column in another column. I ran the function: =MATCH(B1, A:A, 0) and I get a #N/A result. But this result is incorrect...as I clearly see the value of B1 in column A.



I thought the issue might be with the fact that I pasted the cells into the sheet. So I did a test run where I manually inputed the values in the cells and then ran the function. Result: It worked.... But I sure as hell don't want to manually input all my data.



So my question is...how do I fix this? I've tried pasting the values in all sorts of formats and still no luck. Maybe this is not the issue? I do not know. Suggestions will be greatly appreciated.










share|improve this question
























  • I think that there are spaces (or other invisible characters) in the pasted text, in which case using =MATCH("*"&B1&"*", A:A, 0) should give a match. But that means that the text B1 can be anywhere in the cells you're looking up (* is a wildcard in excel to mean any number of any characters).
    – Jerry
    Sep 20 '13 at 17:45














3












3








3







I'm trying to find the positions of the values(text) in one column in another column. I ran the function: =MATCH(B1, A:A, 0) and I get a #N/A result. But this result is incorrect...as I clearly see the value of B1 in column A.



I thought the issue might be with the fact that I pasted the cells into the sheet. So I did a test run where I manually inputed the values in the cells and then ran the function. Result: It worked.... But I sure as hell don't want to manually input all my data.



So my question is...how do I fix this? I've tried pasting the values in all sorts of formats and still no luck. Maybe this is not the issue? I do not know. Suggestions will be greatly appreciated.










share|improve this question















I'm trying to find the positions of the values(text) in one column in another column. I ran the function: =MATCH(B1, A:A, 0) and I get a #N/A result. But this result is incorrect...as I clearly see the value of B1 in column A.



I thought the issue might be with the fact that I pasted the cells into the sheet. So I did a test run where I manually inputed the values in the cells and then ran the function. Result: It worked.... But I sure as hell don't want to manually input all my data.



So my question is...how do I fix this? I've tried pasting the values in all sorts of formats and still no luck. Maybe this is not the issue? I do not know. Suggestions will be greatly appreciated.







microsoft-excel microsoft-excel-2010 worksheet-function






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Sep 21 '13 at 19:32









beroe

774415




774415










asked Sep 20 '13 at 17:40









Eunice

16112




16112












  • I think that there are spaces (or other invisible characters) in the pasted text, in which case using =MATCH("*"&B1&"*", A:A, 0) should give a match. But that means that the text B1 can be anywhere in the cells you're looking up (* is a wildcard in excel to mean any number of any characters).
    – Jerry
    Sep 20 '13 at 17:45


















  • I think that there are spaces (or other invisible characters) in the pasted text, in which case using =MATCH("*"&B1&"*", A:A, 0) should give a match. But that means that the text B1 can be anywhere in the cells you're looking up (* is a wildcard in excel to mean any number of any characters).
    – Jerry
    Sep 20 '13 at 17:45
















I think that there are spaces (or other invisible characters) in the pasted text, in which case using =MATCH("*"&B1&"*", A:A, 0) should give a match. But that means that the text B1 can be anywhere in the cells you're looking up (* is a wildcard in excel to mean any number of any characters).
– Jerry
Sep 20 '13 at 17:45




I think that there are spaces (or other invisible characters) in the pasted text, in which case using =MATCH("*"&B1&"*", A:A, 0) should give a match. But that means that the text B1 can be anywhere in the cells you're looking up (* is a wildcard in excel to mean any number of any characters).
– Jerry
Sep 20 '13 at 17:45










9 Answers
9






active

oldest

votes


















3














In my experience, this occurs because you're trying to match cells with two different formats. For example, when you copy and paste data into column A, it may be pasted as Text format. If B1 is numeric and A:A are text cells, even if the content is identical and there are no superfluous spaces or other invisible characters, the match will still return #N/A.



You probably know how to change the cell format, but I'll describe it for the sake of completeness. In the Home tab of the Ribbon, click here:



home tab with freehand circles



and change the formats of each group of cells so that they match.






share|improve this answer























  • I think you're right about the mismatch John but it's not always easy to change formats, e.g. if you have text formatted numbers you can't simply change to a numeric format (or actually you can make the change but it doesn't work) - Text to columns functionality can be used to change the format of a whole column
    – barry houdini
    Sep 21 '13 at 10:59






  • 1




    You might be able to copy and Paste Special into the same spot and choose the format there too (e.g., paste values)
    – beroe
    Sep 21 '13 at 17:10



















3














If you're matching numbers, try using the "VALUE" function.



For instance =VALUE(A1) will return (the Number) 100 if cell A1 is TEXT formatted, and contains 100, or 100 with a trailing or leading space (perhaps multiple, I didn't try)



It can be really helpful when, like mentioned above, formatting is stopping matches or lookups.



This is what Excel 2007 help says about it:



"Converts a text string that represents a number, to a number"
Text can be in any of the constant number, date, or time formats recognized by Microsoft Excel. If text is not in one of these formats, VALUE returns the #VALUE! error value.






share|improve this answer





























    1














    In my case, I replaced spaces with blanks in the pasted cells and the contents finally matched.






    share|improve this answer

















    • 3




      what's the difference between a space and a blank?
      – Pierre.Vriens
      Dec 11 '17 at 11:43



















    0














    I had this issue. In my case the tilde character (~) broke the MATCH function, even with pasted values. There may be other special characters that do this as well.






    share|improve this answer





















    • The question really describes a different situation. There is no problem with the characters when manually entered.
      – fixer1234
      Apr 17 '15 at 17:12



















    0














    I had a similar problem using the match function between two different sheets. Cells were correctly formatted and had no extra spaces. Weirder still, the match function would throw the #N/A sometimes, but other times it would provide a number, but with the wrong row number.



    Solution: I re-ordered both sheets by the columns I was matching and poof! All fixed. Couldn't tell you why, though.






    share|improve this answer





























      0














      I've managed to solve this, without really understanding the cause... but it seems to be some kind of formatting related thing.



      What you should do is copy the matched column of each sheet to Notepad, and then cut and paste back. This will get rid of the problem. Hope it helps!






      share|improve this answer































        0














        I too killed an hour on this. The notepad trick DID work, but first I had to format the respective columns to be "Text". They were "General". Just formatting didn't work, and I was able to recreate it with previously saved versions.






        share|improve this answer

















        • 2




          This answer appears to be commentary. Commentary should never be submitted as an answer to a question. You should edit this answer, and provide specific details, how the author solves their problem. An answer, is not the proper place, to get help with your own problems. Your lack of reputation,and your inability to submit comments, isn't a valid reason to submit comments as an answer. Please consider modifying your answer so it answers the author's question.
          – Ramhound
          Jun 26 '17 at 17:54



















        0














        I had a similar problem comparing "Time" fields, it turned out one of the columns actually contained date & time while the other was just time (both were from CSV files). They were both formatted to show TIME only so I didn't notice at first but when I converted them both to Time - voala!






        share|improve this answer





























          0














          You most likely have spaces or special characters you can't see.(Format Issue)



          List/ Column you're searching your data in (A:A)-In this Scenario




          1. Copy column (A:A) and Paste to Notepad

          2. After Pasted to Notepad, Ctrl+A and Ctrl+X


          Go Back to Excel




          1. Ctrl+V to on the Column


          This gets rid of all the spaces in between character/ fixes the formatting issue.



          -Not the nicest way to solve this problem, but when you have thousands of rows to search through, it's the easiest solution.






          share|improve this answer





















            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "3"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f648143%2fexcel-match-function-doesnt-work-on-pasted-values%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            9 Answers
            9






            active

            oldest

            votes








            9 Answers
            9






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            3














            In my experience, this occurs because you're trying to match cells with two different formats. For example, when you copy and paste data into column A, it may be pasted as Text format. If B1 is numeric and A:A are text cells, even if the content is identical and there are no superfluous spaces or other invisible characters, the match will still return #N/A.



            You probably know how to change the cell format, but I'll describe it for the sake of completeness. In the Home tab of the Ribbon, click here:



            home tab with freehand circles



            and change the formats of each group of cells so that they match.






            share|improve this answer























            • I think you're right about the mismatch John but it's not always easy to change formats, e.g. if you have text formatted numbers you can't simply change to a numeric format (or actually you can make the change but it doesn't work) - Text to columns functionality can be used to change the format of a whole column
              – barry houdini
              Sep 21 '13 at 10:59






            • 1




              You might be able to copy and Paste Special into the same spot and choose the format there too (e.g., paste values)
              – beroe
              Sep 21 '13 at 17:10
















            3














            In my experience, this occurs because you're trying to match cells with two different formats. For example, when you copy and paste data into column A, it may be pasted as Text format. If B1 is numeric and A:A are text cells, even if the content is identical and there are no superfluous spaces or other invisible characters, the match will still return #N/A.



            You probably know how to change the cell format, but I'll describe it for the sake of completeness. In the Home tab of the Ribbon, click here:



            home tab with freehand circles



            and change the formats of each group of cells so that they match.






            share|improve this answer























            • I think you're right about the mismatch John but it's not always easy to change formats, e.g. if you have text formatted numbers you can't simply change to a numeric format (or actually you can make the change but it doesn't work) - Text to columns functionality can be used to change the format of a whole column
              – barry houdini
              Sep 21 '13 at 10:59






            • 1




              You might be able to copy and Paste Special into the same spot and choose the format there too (e.g., paste values)
              – beroe
              Sep 21 '13 at 17:10














            3












            3








            3






            In my experience, this occurs because you're trying to match cells with two different formats. For example, when you copy and paste data into column A, it may be pasted as Text format. If B1 is numeric and A:A are text cells, even if the content is identical and there are no superfluous spaces or other invisible characters, the match will still return #N/A.



            You probably know how to change the cell format, but I'll describe it for the sake of completeness. In the Home tab of the Ribbon, click here:



            home tab with freehand circles



            and change the formats of each group of cells so that they match.






            share|improve this answer














            In my experience, this occurs because you're trying to match cells with two different formats. For example, when you copy and paste data into column A, it may be pasted as Text format. If B1 is numeric and A:A are text cells, even if the content is identical and there are no superfluous spaces or other invisible characters, the match will still return #N/A.



            You probably know how to change the cell format, but I'll describe it for the sake of completeness. In the Home tab of the Ribbon, click here:



            home tab with freehand circles



            and change the formats of each group of cells so that they match.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Sep 20 '13 at 18:36

























            answered Sep 20 '13 at 18:29









            John Bensin

            1,2651221




            1,2651221












            • I think you're right about the mismatch John but it's not always easy to change formats, e.g. if you have text formatted numbers you can't simply change to a numeric format (or actually you can make the change but it doesn't work) - Text to columns functionality can be used to change the format of a whole column
              – barry houdini
              Sep 21 '13 at 10:59






            • 1




              You might be able to copy and Paste Special into the same spot and choose the format there too (e.g., paste values)
              – beroe
              Sep 21 '13 at 17:10


















            • I think you're right about the mismatch John but it's not always easy to change formats, e.g. if you have text formatted numbers you can't simply change to a numeric format (or actually you can make the change but it doesn't work) - Text to columns functionality can be used to change the format of a whole column
              – barry houdini
              Sep 21 '13 at 10:59






            • 1




              You might be able to copy and Paste Special into the same spot and choose the format there too (e.g., paste values)
              – beroe
              Sep 21 '13 at 17:10
















            I think you're right about the mismatch John but it's not always easy to change formats, e.g. if you have text formatted numbers you can't simply change to a numeric format (or actually you can make the change but it doesn't work) - Text to columns functionality can be used to change the format of a whole column
            – barry houdini
            Sep 21 '13 at 10:59




            I think you're right about the mismatch John but it's not always easy to change formats, e.g. if you have text formatted numbers you can't simply change to a numeric format (or actually you can make the change but it doesn't work) - Text to columns functionality can be used to change the format of a whole column
            – barry houdini
            Sep 21 '13 at 10:59




            1




            1




            You might be able to copy and Paste Special into the same spot and choose the format there too (e.g., paste values)
            – beroe
            Sep 21 '13 at 17:10




            You might be able to copy and Paste Special into the same spot and choose the format there too (e.g., paste values)
            – beroe
            Sep 21 '13 at 17:10













            3














            If you're matching numbers, try using the "VALUE" function.



            For instance =VALUE(A1) will return (the Number) 100 if cell A1 is TEXT formatted, and contains 100, or 100 with a trailing or leading space (perhaps multiple, I didn't try)



            It can be really helpful when, like mentioned above, formatting is stopping matches or lookups.



            This is what Excel 2007 help says about it:



            "Converts a text string that represents a number, to a number"
            Text can be in any of the constant number, date, or time formats recognized by Microsoft Excel. If text is not in one of these formats, VALUE returns the #VALUE! error value.






            share|improve this answer


























              3














              If you're matching numbers, try using the "VALUE" function.



              For instance =VALUE(A1) will return (the Number) 100 if cell A1 is TEXT formatted, and contains 100, or 100 with a trailing or leading space (perhaps multiple, I didn't try)



              It can be really helpful when, like mentioned above, formatting is stopping matches or lookups.



              This is what Excel 2007 help says about it:



              "Converts a text string that represents a number, to a number"
              Text can be in any of the constant number, date, or time formats recognized by Microsoft Excel. If text is not in one of these formats, VALUE returns the #VALUE! error value.






              share|improve this answer
























                3












                3








                3






                If you're matching numbers, try using the "VALUE" function.



                For instance =VALUE(A1) will return (the Number) 100 if cell A1 is TEXT formatted, and contains 100, or 100 with a trailing or leading space (perhaps multiple, I didn't try)



                It can be really helpful when, like mentioned above, formatting is stopping matches or lookups.



                This is what Excel 2007 help says about it:



                "Converts a text string that represents a number, to a number"
                Text can be in any of the constant number, date, or time formats recognized by Microsoft Excel. If text is not in one of these formats, VALUE returns the #VALUE! error value.






                share|improve this answer












                If you're matching numbers, try using the "VALUE" function.



                For instance =VALUE(A1) will return (the Number) 100 if cell A1 is TEXT formatted, and contains 100, or 100 with a trailing or leading space (perhaps multiple, I didn't try)



                It can be really helpful when, like mentioned above, formatting is stopping matches or lookups.



                This is what Excel 2007 help says about it:



                "Converts a text string that represents a number, to a number"
                Text can be in any of the constant number, date, or time formats recognized by Microsoft Excel. If text is not in one of these formats, VALUE returns the #VALUE! error value.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered May 30 '14 at 0:23









                Stax

                413




                413























                    1














                    In my case, I replaced spaces with blanks in the pasted cells and the contents finally matched.






                    share|improve this answer

















                    • 3




                      what's the difference between a space and a blank?
                      – Pierre.Vriens
                      Dec 11 '17 at 11:43
















                    1














                    In my case, I replaced spaces with blanks in the pasted cells and the contents finally matched.






                    share|improve this answer

















                    • 3




                      what's the difference between a space and a blank?
                      – Pierre.Vriens
                      Dec 11 '17 at 11:43














                    1












                    1








                    1






                    In my case, I replaced spaces with blanks in the pasted cells and the contents finally matched.






                    share|improve this answer












                    In my case, I replaced spaces with blanks in the pasted cells and the contents finally matched.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Dec 11 '17 at 10:44









                    sheetal

                    111




                    111








                    • 3




                      what's the difference between a space and a blank?
                      – Pierre.Vriens
                      Dec 11 '17 at 11:43














                    • 3




                      what's the difference between a space and a blank?
                      – Pierre.Vriens
                      Dec 11 '17 at 11:43








                    3




                    3




                    what's the difference between a space and a blank?
                    – Pierre.Vriens
                    Dec 11 '17 at 11:43




                    what's the difference between a space and a blank?
                    – Pierre.Vriens
                    Dec 11 '17 at 11:43











                    0














                    I had this issue. In my case the tilde character (~) broke the MATCH function, even with pasted values. There may be other special characters that do this as well.






                    share|improve this answer





















                    • The question really describes a different situation. There is no problem with the characters when manually entered.
                      – fixer1234
                      Apr 17 '15 at 17:12
















                    0














                    I had this issue. In my case the tilde character (~) broke the MATCH function, even with pasted values. There may be other special characters that do this as well.






                    share|improve this answer





















                    • The question really describes a different situation. There is no problem with the characters when manually entered.
                      – fixer1234
                      Apr 17 '15 at 17:12














                    0












                    0








                    0






                    I had this issue. In my case the tilde character (~) broke the MATCH function, even with pasted values. There may be other special characters that do this as well.






                    share|improve this answer












                    I had this issue. In my case the tilde character (~) broke the MATCH function, even with pasted values. There may be other special characters that do this as well.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Apr 17 '15 at 16:26









                    user438629

                    1




                    1












                    • The question really describes a different situation. There is no problem with the characters when manually entered.
                      – fixer1234
                      Apr 17 '15 at 17:12


















                    • The question really describes a different situation. There is no problem with the characters when manually entered.
                      – fixer1234
                      Apr 17 '15 at 17:12
















                    The question really describes a different situation. There is no problem with the characters when manually entered.
                    – fixer1234
                    Apr 17 '15 at 17:12




                    The question really describes a different situation. There is no problem with the characters when manually entered.
                    – fixer1234
                    Apr 17 '15 at 17:12











                    0














                    I had a similar problem using the match function between two different sheets. Cells were correctly formatted and had no extra spaces. Weirder still, the match function would throw the #N/A sometimes, but other times it would provide a number, but with the wrong row number.



                    Solution: I re-ordered both sheets by the columns I was matching and poof! All fixed. Couldn't tell you why, though.






                    share|improve this answer


























                      0














                      I had a similar problem using the match function between two different sheets. Cells were correctly formatted and had no extra spaces. Weirder still, the match function would throw the #N/A sometimes, but other times it would provide a number, but with the wrong row number.



                      Solution: I re-ordered both sheets by the columns I was matching and poof! All fixed. Couldn't tell you why, though.






                      share|improve this answer
























                        0












                        0








                        0






                        I had a similar problem using the match function between two different sheets. Cells were correctly formatted and had no extra spaces. Weirder still, the match function would throw the #N/A sometimes, but other times it would provide a number, but with the wrong row number.



                        Solution: I re-ordered both sheets by the columns I was matching and poof! All fixed. Couldn't tell you why, though.






                        share|improve this answer












                        I had a similar problem using the match function between two different sheets. Cells were correctly formatted and had no extra spaces. Weirder still, the match function would throw the #N/A sometimes, but other times it would provide a number, but with the wrong row number.



                        Solution: I re-ordered both sheets by the columns I was matching and poof! All fixed. Couldn't tell you why, though.







                        share|improve this answer












                        share|improve this answer



                        share|improve this answer










                        answered Aug 12 '15 at 21:00









                        Billy

                        1




                        1























                            0














                            I've managed to solve this, without really understanding the cause... but it seems to be some kind of formatting related thing.



                            What you should do is copy the matched column of each sheet to Notepad, and then cut and paste back. This will get rid of the problem. Hope it helps!






                            share|improve this answer




























                              0














                              I've managed to solve this, without really understanding the cause... but it seems to be some kind of formatting related thing.



                              What you should do is copy the matched column of each sheet to Notepad, and then cut and paste back. This will get rid of the problem. Hope it helps!






                              share|improve this answer


























                                0












                                0








                                0






                                I've managed to solve this, without really understanding the cause... but it seems to be some kind of formatting related thing.



                                What you should do is copy the matched column of each sheet to Notepad, and then cut and paste back. This will get rid of the problem. Hope it helps!






                                share|improve this answer














                                I've managed to solve this, without really understanding the cause... but it seems to be some kind of formatting related thing.



                                What you should do is copy the matched column of each sheet to Notepad, and then cut and paste back. This will get rid of the problem. Hope it helps!







                                share|improve this answer














                                share|improve this answer



                                share|improve this answer








                                edited Apr 2 '17 at 6:51









                                PulseJet

                                1,8441830




                                1,8441830










                                answered Apr 2 '17 at 5:29









                                pazpaz

                                1




                                1























                                    0














                                    I too killed an hour on this. The notepad trick DID work, but first I had to format the respective columns to be "Text". They were "General". Just formatting didn't work, and I was able to recreate it with previously saved versions.






                                    share|improve this answer

















                                    • 2




                                      This answer appears to be commentary. Commentary should never be submitted as an answer to a question. You should edit this answer, and provide specific details, how the author solves their problem. An answer, is not the proper place, to get help with your own problems. Your lack of reputation,and your inability to submit comments, isn't a valid reason to submit comments as an answer. Please consider modifying your answer so it answers the author's question.
                                      – Ramhound
                                      Jun 26 '17 at 17:54
















                                    0














                                    I too killed an hour on this. The notepad trick DID work, but first I had to format the respective columns to be "Text". They were "General". Just formatting didn't work, and I was able to recreate it with previously saved versions.






                                    share|improve this answer

















                                    • 2




                                      This answer appears to be commentary. Commentary should never be submitted as an answer to a question. You should edit this answer, and provide specific details, how the author solves their problem. An answer, is not the proper place, to get help with your own problems. Your lack of reputation,and your inability to submit comments, isn't a valid reason to submit comments as an answer. Please consider modifying your answer so it answers the author's question.
                                      – Ramhound
                                      Jun 26 '17 at 17:54














                                    0












                                    0








                                    0






                                    I too killed an hour on this. The notepad trick DID work, but first I had to format the respective columns to be "Text". They were "General". Just formatting didn't work, and I was able to recreate it with previously saved versions.






                                    share|improve this answer












                                    I too killed an hour on this. The notepad trick DID work, but first I had to format the respective columns to be "Text". They were "General". Just formatting didn't work, and I was able to recreate it with previously saved versions.







                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered Jun 26 '17 at 17:29









                                    John M

                                    11




                                    11








                                    • 2




                                      This answer appears to be commentary. Commentary should never be submitted as an answer to a question. You should edit this answer, and provide specific details, how the author solves their problem. An answer, is not the proper place, to get help with your own problems. Your lack of reputation,and your inability to submit comments, isn't a valid reason to submit comments as an answer. Please consider modifying your answer so it answers the author's question.
                                      – Ramhound
                                      Jun 26 '17 at 17:54














                                    • 2




                                      This answer appears to be commentary. Commentary should never be submitted as an answer to a question. You should edit this answer, and provide specific details, how the author solves their problem. An answer, is not the proper place, to get help with your own problems. Your lack of reputation,and your inability to submit comments, isn't a valid reason to submit comments as an answer. Please consider modifying your answer so it answers the author's question.
                                      – Ramhound
                                      Jun 26 '17 at 17:54








                                    2




                                    2




                                    This answer appears to be commentary. Commentary should never be submitted as an answer to a question. You should edit this answer, and provide specific details, how the author solves their problem. An answer, is not the proper place, to get help with your own problems. Your lack of reputation,and your inability to submit comments, isn't a valid reason to submit comments as an answer. Please consider modifying your answer so it answers the author's question.
                                    – Ramhound
                                    Jun 26 '17 at 17:54




                                    This answer appears to be commentary. Commentary should never be submitted as an answer to a question. You should edit this answer, and provide specific details, how the author solves their problem. An answer, is not the proper place, to get help with your own problems. Your lack of reputation,and your inability to submit comments, isn't a valid reason to submit comments as an answer. Please consider modifying your answer so it answers the author's question.
                                    – Ramhound
                                    Jun 26 '17 at 17:54











                                    0














                                    I had a similar problem comparing "Time" fields, it turned out one of the columns actually contained date & time while the other was just time (both were from CSV files). They were both formatted to show TIME only so I didn't notice at first but when I converted them both to Time - voala!






                                    share|improve this answer


























                                      0














                                      I had a similar problem comparing "Time" fields, it turned out one of the columns actually contained date & time while the other was just time (both were from CSV files). They were both formatted to show TIME only so I didn't notice at first but when I converted them both to Time - voala!






                                      share|improve this answer
























                                        0












                                        0








                                        0






                                        I had a similar problem comparing "Time" fields, it turned out one of the columns actually contained date & time while the other was just time (both were from CSV files). They were both formatted to show TIME only so I didn't notice at first but when I converted them both to Time - voala!






                                        share|improve this answer












                                        I had a similar problem comparing "Time" fields, it turned out one of the columns actually contained date & time while the other was just time (both were from CSV files). They were both formatted to show TIME only so I didn't notice at first but when I converted them both to Time - voala!







                                        share|improve this answer












                                        share|improve this answer



                                        share|improve this answer










                                        answered Nov 17 '17 at 17:27









                                        Bob

                                        1




                                        1























                                            0














                                            You most likely have spaces or special characters you can't see.(Format Issue)



                                            List/ Column you're searching your data in (A:A)-In this Scenario




                                            1. Copy column (A:A) and Paste to Notepad

                                            2. After Pasted to Notepad, Ctrl+A and Ctrl+X


                                            Go Back to Excel




                                            1. Ctrl+V to on the Column


                                            This gets rid of all the spaces in between character/ fixes the formatting issue.



                                            -Not the nicest way to solve this problem, but when you have thousands of rows to search through, it's the easiest solution.






                                            share|improve this answer


























                                              0














                                              You most likely have spaces or special characters you can't see.(Format Issue)



                                              List/ Column you're searching your data in (A:A)-In this Scenario




                                              1. Copy column (A:A) and Paste to Notepad

                                              2. After Pasted to Notepad, Ctrl+A and Ctrl+X


                                              Go Back to Excel




                                              1. Ctrl+V to on the Column


                                              This gets rid of all the spaces in between character/ fixes the formatting issue.



                                              -Not the nicest way to solve this problem, but when you have thousands of rows to search through, it's the easiest solution.






                                              share|improve this answer
























                                                0












                                                0








                                                0






                                                You most likely have spaces or special characters you can't see.(Format Issue)



                                                List/ Column you're searching your data in (A:A)-In this Scenario




                                                1. Copy column (A:A) and Paste to Notepad

                                                2. After Pasted to Notepad, Ctrl+A and Ctrl+X


                                                Go Back to Excel




                                                1. Ctrl+V to on the Column


                                                This gets rid of all the spaces in between character/ fixes the formatting issue.



                                                -Not the nicest way to solve this problem, but when you have thousands of rows to search through, it's the easiest solution.






                                                share|improve this answer












                                                You most likely have spaces or special characters you can't see.(Format Issue)



                                                List/ Column you're searching your data in (A:A)-In this Scenario




                                                1. Copy column (A:A) and Paste to Notepad

                                                2. After Pasted to Notepad, Ctrl+A and Ctrl+X


                                                Go Back to Excel




                                                1. Ctrl+V to on the Column


                                                This gets rid of all the spaces in between character/ fixes the formatting issue.



                                                -Not the nicest way to solve this problem, but when you have thousands of rows to search through, it's the easiest solution.







                                                share|improve this answer












                                                share|improve this answer



                                                share|improve this answer










                                                answered Feb 22 at 0:35









                                                Adrian

                                                1




                                                1






























                                                    draft saved

                                                    draft discarded




















































                                                    Thanks for contributing an answer to Super User!


                                                    • Please be sure to answer the question. Provide details and share your research!

                                                    But avoid



                                                    • Asking for help, clarification, or responding to other answers.

                                                    • Making statements based on opinion; back them up with references or personal experience.


                                                    To learn more, see our tips on writing great answers.





                                                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                                                    Please pay close attention to the following guidance:


                                                    • Please be sure to answer the question. Provide details and share your research!

                                                    But avoid



                                                    • Asking for help, clarification, or responding to other answers.

                                                    • Making statements based on opinion; back them up with references or personal experience.


                                                    To learn more, see our tips on writing great answers.




                                                    draft saved


                                                    draft discarded














                                                    StackExchange.ready(
                                                    function () {
                                                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f648143%2fexcel-match-function-doesnt-work-on-pasted-values%23new-answer', 'question_page');
                                                    }
                                                    );

                                                    Post as a guest















                                                    Required, but never shown





















































                                                    Required, but never shown














                                                    Required, but never shown












                                                    Required, but never shown







                                                    Required, but never shown

































                                                    Required, but never shown














                                                    Required, but never shown












                                                    Required, but never shown







                                                    Required, but never shown







                                                    Popular posts from this blog

                                                    Plaza Victoria

                                                    In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

                                                    How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...