+ Reply to Thread
Results 1 to 6 of 6

Verifying data across multiple worksheet

  1. #1
    Registered User
    Join Date
    10-29-2013
    Location
    Maryland
    MS-Off Ver
    Microsoft? Excel? for Microsoft 365 MSO (Version 2305 Build 16.0.16501.20074) 64-bit
    Posts
    54

    Verifying data across multiple worksheet

    Hi all,

    I posted this the other day but I didn't provide enough information.
    I currently have a workbook with approximately 30 worksheets. I have a master worksheet that contains a list of contract numbers (ex. 23985734) about 100 or so.
    I want to check and see if all of the contract numbers reside in at least one of the 30 worksheets.

    So I would like something like this:

    Contract No. Exists/Missing
    23985734 Exists (based on formula)
    25847156 Missing (based on formula)

    Etc....
    I would prefer not using VBA. So once my lookup sees a matching contract number the search will stop. I don't care if I have duplicate contract numbers in the various worksheet. It would be nice if my formula would provide the worksheet name it resides in but its not necessary at this time. Also the data in each worksheet is not in the same layout.

    I am not able to upload any sample data.
    Any help would be greatly appreciated.

    Mark R

  2. #2
    Valued Forum Contributor Sadath31's Avatar
    Join Date
    03-02-2011
    Location
    Dammam, Saudi Arabia
    MS-Off Ver
    Office 365
    Posts
    452

    Re: Verifying data across multiple worksheet

    Hi
    =IF(ISERROR(MATCH(TRUE,COUNTIF(INDIRECT(ShName),A2)>0,0)),"Not Found","Found")
    array formula
    where ShName is the named range with range eg: Sheet1!a1:a100, Sheet2!a1:c100 .... so on
    Attached Files Attached Files

  3. #3
    Registered User
    Join Date
    10-29-2013
    Location
    Maryland
    MS-Off Ver
    Microsoft? Excel? for Microsoft 365 MSO (Version 2305 Build 16.0.16501.20074) 64-bit
    Posts
    54

    Re: Verifying data across multiple worksheet

    Thanks. I will play with it and see what happens.

    Much appreciated!

    Mark

  4. #4
    Forum Expert newdoverman's Avatar
    Join Date
    02-07-2013
    Location
    Port Dover, Ontario, Canada
    MS-Off Ver
    2010
    Posts
    10,330

    Re: Verifying data across multiple worksheet

    Sadath31's excellent approach can be expanded seeing that you say that each worksheet is not the same layout.
    I added numbers beside each worksheet name to be used in a VLOOKUP. This assumes that the worksheets listed are in the actual order of the worksheets or the numbering would have to correspond to the position of the worksheet in the workbook.

    I amended Sadath31's ARRAY formula to the following which will identify the first worksheet that the number is found in:
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    I also amended the worksheet names with cell ranges to include all the columns of a worksheet. This is overkill and if you know the limits of the data then the ranges can be modified.
    Eg. Sheet2!a:xfd

    Results:
    A
    B
    C
    D
    E
    F
    G
    H
    I
    1
    Tel No
    Sheets Names
    2
    52156
    Sheet2!a:xfd
    1
    Sheet2!a:xfd
    3
    51353
    SHeet3!a:xfd
    2
    SHeet3!a:xfd
    4
    64652
    Not Found
    3
    SHeet4!a:xfd
    5
    6546
    Sheet2!a:xfd
    <---------If you like someone's answer, click the star to the left of one of their posts to give them a reputation point for that answer.
    Ron W

  5. #5
    Registered User
    Join Date
    10-29-2013
    Location
    Maryland
    MS-Off Ver
    Microsoft? Excel? for Microsoft 365 MSO (Version 2305 Build 16.0.16501.20074) 64-bit
    Posts
    54

    Re: Verifying data across multiple worksheet

    Is there any way that you can explain what is happening in the formula you provided?

  6. #6
    Forum Expert newdoverman's Avatar
    Join Date
    02-07-2013
    Location
    Port Dover, Ontario, Canada
    MS-Off Ver
    2010
    Posts
    10,330

    Re: Verifying data across multiple worksheet

    =IFERROR(VLOOKUP(MATCH(TRUE,COUNTIF(INDIRECT(ShName),A2)>0,0),$H$2:$I$4,2,0),"Not Found")
    Starting from the centre of the formula.
    ShName is a definded name for the contents of the range I2:I4
    INDIRECT makes the defined name into an actual useable reference to another worksheet
    COUNTIF counts the occurrences of the value in A2 in the list of worksheets and their cell ranges and is looking for a value greater than 0
    The COUNTIF and INDIRECT are inside the MATCH function. MATCH takes 3 arguments. First the value which is A2, second is the array which in this case is defined by the INDIRECT function and lastly the 0 means an EXACT match must be found.
    The MATCH will return a value in this case from 1 to 3 if the value in A2 is found or an error if it is not found.
    VLOOKUP will lookup the value that is found in the range $H$2:$i$4 and return the value in the second column (the 2) that matches the value that MATCH found. The 0 means an EXACT match must be found in the first column.
    IFERROR if the VLOOKUP results in an error, the value at the end of the formula "Not Found" will be returned.

    All of this is based on the formula that Sadath31 first gave to you. It is just expanded a bit.

+ 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. [SOLVED] Verifying and Moving Data from One Worksheet to Another
    By krisaclarke in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 09-24-2015, 08:31 AM
  2. [SOLVED] pull data after verifying the names
    By greatairi in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 12-06-2014, 07:24 AM
  3. Verifying data across files
    By Knavey in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 08-16-2013, 10:06 AM
  4. Formula verifying data
    By tmocky in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-11-2010, 01:37 PM
  5. verifying multiple text boxes are not empty
    By h_aesa1 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 11-14-2009, 11:07 AM
  6. Verifying cell data against a column
    By iceblade04 in forum Excel General
    Replies: 2
    Last Post: 08-05-2009, 05:34 PM
  7. verifying data in excel
    By radio in forum Excel General
    Replies: 7
    Last Post: 04-04-2007, 11:00 AM

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