+ Reply to Thread
Results 1 to 31 of 31

Create relationship between 2 spreadsheets

  1. #1
    Registered User
    Join Date
    04-19-2010
    Location
    Minneapolis
    MS-Off Ver
    Excel 2008 for Mac
    Posts
    19

    Question Create relationship between 2 spreadsheets

    I am new to this forum. So I will try to explain as best as possible.

    I work in a high school and am trying to use Excel for assigning lockers to students. I am using Excel 2008 for Mac with system 10.4.11

    I am using two Spreadsheets. SS #1 has column A (Lock Serial #s) and Column B (the corresponding combination for each serial #). See attached

    SS #2 includes the locker #, student ID#, student name, Serial # (Column D) and Combination (Column E). See Attached.

    On SS #2 we input the lock serial number being assigned to the locker by scanning a barcode serial # tag. What we want the SS #2 to do at that point is, to search for that lock serial number in SS #1 Column A, and when it finds a match, take the corresponding combination from SS #1 Column B, and input it into SS #2 Column E.

    I believe I need to create a formula using Lookup, etc., but have no idea of how to do this. Any help would be greatly appreciated. Thank you.
    Attached Files Attached Files
    Last edited by UncleI; 04-30-2010 at 12:06 PM. Reason: New Problem

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Trying to create relationship between 2 spreadsheets

    1) Open both worksheets to set this up.

    2) In SS2 cell E2 put this formula, then copy down as far as you'd like;

    =IF(ISNUMBER(MATCH($D2,'[SS #1.xls]Sheet1'!$A:$A, 0)), INDEX('[SS #1.xls]Sheet1'!$B:$B, MATCH($D2, '[SS #1.xls]Sheet1'!$A:$A, 0)), "not found")

    3) Now save/close the SS1

    4) The sheet2 formulas should now have changed to include the full path to the SS1 file.

    5) Save the SS2 file.

    You can now use SS2 without opening SS1.
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Registered User
    Join Date
    04-19-2010
    Location
    Minneapolis
    MS-Off Ver
    Excel 2008 for Mac
    Posts
    19

    Re: Trying to create relationship between 2 spreadsheets

    I used your formula above, and it worked for the first find only. Then the rest of the finds came up with the same combination for all of the locks. Is there another command that needs to be included so that it finds each serial # and does a lookup and enters the correct combination?

  4. #4
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Trying to create relationship between 2 spreadsheets

    The formula is self-adjusting. The $D2 should change itself to $D3, $D4 etc as you copy that cell downward. You're copying the cell downward. not the formula, yes?

    1) Enter the formula in E2
    2) Grab the lower-right corner "handle" of that cell and drag downward

  5. #5
    Registered User
    Join Date
    04-19-2010
    Location
    Minneapolis
    MS-Off Ver
    Excel 2008 for Mac
    Posts
    19

    Re: Trying to create relationship between 2 spreadsheets

    You are awesome. That was my problem, I copied the formula, rather than the cell. Thanks so much. That brings me to another question with the same spreadsheets.

    I can download a list of student names, grade, and their ID numbers to another spreadsheet, let's call it SS #3 (Column A2 = ID#, Column B2 = Name, and Column C2 = Grade). Can I use multiple spreadsheets at the same time for relationships. For example, some of the students will come to get their lockers and have their ID# available, (which is obviously quicker to enter than their names, with no spelling errors in typing in the names). Can we use SS #2 to also search either the name or the ID# fields and have it enter the corresponding information (name or ID# and grade, while still using the other fields that you helped me on. If so, can you show me the formula to use for that as well. Once again, thanks for your help.

  6. #6
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Trying to create relationship between 2 spreadsheets

    Quote Originally Posted by UncleI View Post
    Can I use multiple spreadsheets at the same time for relationships.
    Yes, of course.

    Can we use SS #2 to also search either the name or the ID# fields and have it enter the corresponding information (name or ID# and grade, while still using the other fields that you helped me on.
    Yes, we've already shown you how to do it matching on the serial #. There is absolutely no difference in looking up student IDs, you simply adjust the formula to search the correct workbook in the correct column.

    You need to step back and absorb the INDEX/MATCH function. If you understand it, you can change it over and over for all your needs. The key part of the formula you have so far is:

    =INDEX('[SS #1.xls]Sheet1'!$B:$B, MATCH($D2, '[SS #1.xls]Sheet1'!$A:$A, 0))

    That simplifies to:

    =INDEX(valuestoreturn, MATCH(valuetomatch, rangetomatch, exactmatchrequired))

    Let that sink in and then start making substitutions for your new need. If it's the name you're trying to look up, then the valuestoreturn will be column with names in the workbook you're searching.

    The valuetomatch is the cell where you're entering the student id.

    The rangetomatch is column with student ids in the workbook you're searching.

    Once you get that worked out, you fix the first part of the formula, too. The first part checks to make sure there IS a match with the MATCH() formula. So once you have the new references, just copy the MATCH() portion into the beginning where the ISNUMBER() test is.

    Give it a try. This is worth figuring out.

  7. #7
    Registered User
    Join Date
    04-19-2010
    Location
    Minneapolis
    MS-Off Ver
    Excel 2008 for Mac
    Posts
    19

    Re: Trying to create relationship between 2 spreadsheets

    Ok. I am trying to set up these additional formulas. My question remains in the first part --
    =IF(ISNUMBER(MATCH($D2,'[SS #1.xls]Sheet1'!$A:$A, 0)), INDEX('[SS #1.xls]Sheet1'!$B:$B, MATCH($D2, '[SS #1.xls]Sheet1'!$A:$A, 0)), "not found") -- "The ISNUMBER command". If I am dealing with something other than numbers, i.e. Student Name, what do I use instead of ISNUMBER? What does ISNUMBER mean? Thanks again for your help.

  8. #8
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Create relationship between 2 spreadsheets

    That throws a lot of people. In it's purest form, yes, ISNUMBER() is used to test a cell for a numeric value.

    But that's not how I'm using it. I'm using it to test the results of the MATCH() formula. MATCH() always returns a numeric value or an error. If the MATCH() returns an error, it would cause the INDEX() to error and the result of your formula would be an error. Most people hate that.

    So, I test the MATCH() first to see if it properly returns a number. I wrap it in an ISNUMBER to see what we get.

    If we get a number, I run the INDEX/MATCH formula.
    If we don't get a number, I don't run the formula at all, just return a null value.



    That's why I pulled out the INDEX / MATCH and explained it. That's the formula you need to get working. Once it works, drag it around and you'll see what I mean about getting errors sometimes. Then put the test back in the front.
    Last edited by JBeaucaire; 04-22-2010 at 06:09 PM.

  9. #9
    Registered User
    Join Date
    04-19-2010
    Location
    Minneapolis
    MS-Off Ver
    Excel 2008 for Mac
    Posts
    19

    Re: Create relationship between 2 spreadsheets

    Ok. I tried what you told me. I was able to get it to work finding the student name by searching the student ID#, but I could not get it to work in reverse, finding the Student ID# by searching the name. Also, I could not get it to find the grade after a Student #ID number is entered. I thought it was easy after the first one, but the last two formulas are really throwing me for a loop. Can you look at these and see where I am going wrong?

    I have changed the names on the SS's but they are linked properly, It is just a matter of my formula being screwed up. Attached are new copies of the two sheets I am trying to create the relationships for the two fields Student # and Grade. I am also showing you the formulas that I used to try and get them to relate.

    Your help would be much appreciated as the school year is winding down and I need to get this figured out, and then I have to figure out how to get the data of Locker #, Serial # and Combination to create a 39 barcode label coded based on Lock Serial #.

    Here are the formulas that I have created for the two fields that I cannot get to work.

    TO Find ID#:
    =IF(ISNUMBER(MATCH($B2,'[StudentsDB.xls]Sheet1'!$B:$B, 0)), INDEX('[StudentDB.xls]Sheet1'!$A:$A, MATCH($C2, '[StudentsDB.xls]Sheet1'!$B:$B, 0)), "not found")

    TO Find Grade:
    =IF(ISNUMBER(MATCH($B2,'[StudentsDB.xls]Sheet1'!$C:$C, 0)), INDEX('[StudentDB.xls]Sheet1'!$A:$A, MATCH($B2, '[StudentsDB.xls]Sheet1'!$C:$C, 0)), "not found")
    Attached Images Attached Images

  10. #10
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Create relationship between 2 spreadsheets

    Post up the troublesome workbook(s). ZIP them if necessary.

  11. #11
    Registered User
    Join Date
    04-19-2010
    Location
    Minneapolis
    MS-Off Ver
    Excel 2008 for Mac
    Posts
    19

    Re: Create relationship between 2 spreadsheets

    Thanks for your quick response.

    Here are the two Workbooks
    Attached Files Attached Files

  12. #12
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Create relationship between 2 spreadsheets

    1) You have a typo in your formula, its StudentsDB, not StudentDB.

    2) You have to edit your INDEX() column to the column of data you want returned.

    In D2 you have INDEX([StudentsDB.xls]Sheet1!$A:$A....but column A on that sheet is the student ID, you want the GRADE, so that needs to change to $C:$C.

    3) Then you want to MATCH() the value in B2 to the student ID, so you're MATCH formula needs to be:
    MATCH($B2, [StudentsDB.xls]Sheet1!$A:$A, 0)

    ...and that needs to be fixed in two places in that formula.

    The final result after editing to the correct columns is:

    =IF(ISNUMBER(MATCH($B2,[StudentsDB.xls]Sheet1!$A:$A, 0)), INDEX([StudentsDB.xls]Sheet1!$C:$C, MATCH($B2, [StudentsDB.xls]Sheet1!$A:$A, 0)), "not found")

  13. #13
    Registered User
    Join Date
    04-19-2010
    Location
    Minneapolis
    MS-Off Ver
    Excel 2008 for Mac
    Posts
    19

    Re: Create relationship between 2 spreadsheets

    Thank you so much. It works just great now. At least I was close in figuring out how to do it. Now I have one last task that I need to do, to make this project fully functional. We attached tags to our locks that use the serial number as the identifier, and that ties it to the combination. What we need to do, is to print a standard address size label which prints a 39 bar code of the serial number. Below the bar code we need it to print the actual serial number and combination. Is there an easy way to do this using the example file that I have attached. I know that we have no problem scanning in the bar code information into Excel. The only stumbling block is trying to print the labels as I described above. Again, any help that you can give me is appreciated.
    Attached Files Attached Files

  14. #14
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Create relationship between 2 spreadsheets

    I've never done a mail merge myself, but it's done all the time so I imagine it's not that difficult. Press F1 and look up MAIL MERGE in the help files. This is what came up for me when I did that:

    Print labels by using Excel data in a Word mail merge
    By creating a mail merge in Word, and then linking to a list in Excel, you can turn worksheet data such as the addresses of your customers into printable mailing labels.

    1. In Microsoft Excel, set up the data to use in the mail merge.
      1. Make sure the data is in list format: each column has a label in the first row and contains similar facts, and there are no blank rows or columns within the list. You'll use the column labels to specify what data goes where in the mail merge.
      2. Make sure the column labels clearly identify the type of data in the column; this helps you select the right data as you construct the mail merge. For example, labels such as First Name, Last Name, Address, and City are better than Column 1, Column 2, Column 3, and Column 4.
      3. Make sure you have a separate column for each element that you want to include in the mail merge. For example, if you're creating form letters and want to use each recipient's first name in the body of the letter, make sure you have a column that contains first names, rather than a single column with both first and last names. If you want to refer to each recipient by title and last name, such as Mr. Smith, you can use a single column containing both titles and last names, or use one column for title and another for last name.
      4. To make the list easy to find when you select it for the mail merge, give it a name:
        • Select the entire list.
        • On the Insert menu, point to Name, and then click Define.
        • Type a name for the list.
        • Click Add, and then click Close.
    1. Save and close the workbook that contains the data.
    2. Switch to Microsoft Word.
    3. On the Tools menu, point to Letters and Mailings, and then click Mail Merge Wizard.
    4. In the first two steps of the Mail Merge Wizard, select the document type and start the document. If you're creating mailing labels, click Labels in Step 1, and then click Label options in Step 2 to select the size and type of labels to print.
      For more information about these steps, see Word Help.
    5. In the third step, under Select recipients, click Use an existing list, and then click Browse.
    6. In the Look in list, click the folder in which you saved the workbook with your data, click the workbook, and then click Open.
    7. In the Select Table dialog box, locate and click your list. Make sure the First row of data contains column headers check box is selected, and then click OK.
    8. In the Mail Merge Recipients dialog box, click any column labels in your data that correspond to the Word identifiers on the left. This step makes inserting your data in the form documents easier. For more information about matching fields, see Word Help.
    9. If you want to include only selected recipients in the mail merge, click
    10. and select the recipients you want.
    11. Use the rest of the wizard steps to write, add recipient information, preview, personalize, save, and print or e-mail your documents. For information about these steps, see Word Help.

    Notes
    • While Word has your workbook open to create the mail merge, you can't open the workbook in Excel. If you need to see the data and its column labels, go to Step 3 or 5 of the wizard and click Edit recipient list.
    • You can continue to use mail merges with Excel data that you created in earlier versions of Word. To open and use these mail merges in Word 2002 or later, you'll need to install Microsoft Query. Query is no longer required to create new mail merges in Word 2002 or later.


  15. #15
    Registered User
    Join Date
    04-19-2010
    Location
    Minneapolis
    MS-Off Ver
    Excel 2008 for Mac
    Posts
    19

    Re: Create relationship between 2 spreadsheets

    Thanks. I guess I should have been more clear. I know how to do the mail merge for labels. The part I don't know is how to print a Code 39 Bar Code. Any ideas????

  16. #16
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Create relationship between 2 spreadsheets

    Ah, my bad. I think you simply need to download and install the 39 barcode font.

    Google: Excel 39 barcode
    ...the first 10 hits seem to offer the font for free and multiple tutorials on using them.
    Last edited by JBeaucaire; 04-27-2010 at 01:09 PM.

  17. #17
    Registered User
    Join Date
    04-19-2010
    Location
    Minneapolis
    MS-Off Ver
    Excel 2008 for Mac
    Posts
    19

    Re: Create relationship between 2 spreadsheets

    Thank you once again. You have been a tremendous help.

  18. #18
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Create relationship between 2 spreadsheets

    If that takes care of your need, please click EDIT in your original post, click GO ADVANCED and set the PREFIX box to SOLVED.

  19. #19
    Registered User
    Join Date
    04-19-2010
    Location
    Minneapolis
    MS-Off Ver
    Excel 2008 for Mac
    Posts
    19

    Re: Create relationship between 2 spreadsheets

    Just when I thought I had it all figured out, I ran into another problem. Our export from our Student Enrollment file does not import the name as we need it into our Excel SS named StudentsDB. It exports it in two separate fields, First Name and Last Name. Is there a way that I can set up a formula to combine fields in another column so that the new column" LastN,FirstN" shows it as (Last Name, First Name)?

    Attached is the StudentsDB with the new columns added, and a column for LastN,FirstN. Thank you.
    Attached Files Attached Files

  20. #20
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Create relationship between 2 spreadsheets

    Put this formula in B2, then copy the cell downward:

    =E2 & ", " & D2

  21. #21
    Registered User
    Join Date
    04-19-2010
    Location
    Minneapolis
    MS-Off Ver
    Excel 2008 for Mac
    Posts
    19

    Re: Create relationship between 2 spreadsheets

    That worked great. Every time I think I have it all figured out, then I have another problem. Now I have similar problem in reverse.

    When I export the serial number and combination from a former DB program, it puts in a placeholder "†" before the number so that it keeps everything from creating different numbers. For example. if you have a combination that is 4-6-20, without the placeholder it translates the info into the date 4/20/2020. What we need is to remove the placeholder "†" from the combination field and still have it remain 4-6-20. When I save the file as a binary file, it will retain the correct combination. So all I need is to figure out how to remove the "†" in the combination, and preferably in the serial number field as well. Is there a formula that will do this for me, again since the SS is already saved as a binary file? I am attaching a sample of the file.

    Thanks again for any help you can give me.

  22. #22
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Create relationship between 2 spreadsheets

    1) Format the column as TEXT before you do anything else
    2) Highlight the column and do a SEARCH/REPLACE:

    Search: †
    Replace: (blank)

  23. #23
    Registered User
    Join Date
    04-19-2010
    Location
    Minneapolis
    MS-Off Ver
    Excel 2008 for Mac
    Posts
    19

    SOLVED: Re: Create relationship between 2 spreadsheets

    Ok. I thought I had everything working just fine. Then when I moved them to a new location, I get an error message saying circular reference error. I am attaching the StudentDB.xls file, the LockDB.xlsb file, and the LockerAssignmentDB.xlsb file. Again, what I am trying to do is use the first two DB files to fill in on the LockerAssignmentDB.xlsb file. Giving me the option of using either the Student # to find the Student name and grade, or Student name to find the student # and grade. I am down to the last 8 days of the school year and am really in a crisis mode now. I would appreciate you looking at my spreadsheets and see if you can tell which formula I have incorrect. I again appreciate any help you can give me. Thanks again.

    P.S. I am removing the letter "b" from the two xlsb files, since this forum will not allow me to upload xlsb files. Once received, you will need to add the "b" back to LockerAssignmentDB.xls and LockDB.xls files
    Attached Files Attached Files
    Last edited by UncleI; 06-02-2010 at 08:48 AM. Reason: SOLVED

  24. #24
    Registered User
    Join Date
    04-19-2010
    Location
    Minneapolis
    MS-Off Ver
    Excel 2008 for Mac
    Posts
    19

    Re: Create relationship between 2 spreadsheets

    If there is anybody out there who can take the time to look at the formulas on the spreadsheets above. Everything seemed to work just fine until I moved them into a different folder, and /or I changed the one spreadsheet to a binary .xlsb When I tried to send it to the forum as an .xlsb it would not accept it, so I had to remove the "b" from the title. It has to be a binary because it contains combinations to locks and any time it starts with a number between 1 and twelve, and the second number between 1 and 31, it converts it to a date i.e. 10/19/45 and then when printed it calculates that number to result in a very strange result. I am in desperate need of someone who can take a few moments to see if I am doing something wrong, or knows if using a binary file is the culprit.

    Thanks in advance for your help. The school year ends next week and I have to have this solved.

  25. #25
    Registered User
    Join Date
    04-19-2010
    Location
    Minneapolis
    MS-Off Ver
    Excel 2008 for Mac
    Posts
    19

    Re: Create relationship between 2 spreadsheets

    Ok. So now that you ignored me for over the past week and one half, I spent countless hours playing with the formulas, and finally got them to work properly. I have now made several back up copies of the formulas, so I never have to spend this much time trying to figure them out again. So thanks for forcing me to learn how to do them, although I still do not totally understand how they work.

    Now that that is all complete, I have another minor dilemma (I know, I know, I said that once before). I need to know if there is a way to lock the formulas on the spreadsheet, so that when an entry is made on a field that includes a formula, and that entry needs to be corrected, that the formula does not also get deleted. I have tried overwriting the incorrect entry, clearing contents of the field, and deleting the entry, but each time, the formula also goes away. Is there a lock command that can lock the formulas, without locking the entries to those fields as well? If so, could you please tell me how that is done? or is there another workaround to save the formulas from being erased?

    Thanks.

  26. #26
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Create relationship between 2 spreadsheets

    Quote Originally Posted by UncleI View Post
    So thanks for forcing me to learn how to do them, although I still do not totally understand how they work.
    Um, ok? Not sure if you're being sarcastic or not, so I'll take this as an actual thanks for the lengthy and free assistance you have received.

    And yes, learning is what this place is all about, so it's good that is occurring.

    If there are specific questions you have about the processes/formulas we've created together here, state them specifically and I'll elaborate.

    My favorite tool of understanding is the Evaluate Formula icon on the Formula Auditing toolbar, check it out if you have never used it before. It lets you step through the formula in a cell one calc at a time to watch it unfold. Very cool.


    Is there a lock command that can lock the formulas, without locking the entries to those fields as well?
    Hm, this sounds like a "can I hold my breath and still breath at the same time" kind of situation.

    Your cells can have:
    1) formulas intended to offer automated results based on other calculations.
    2) flat data manually entered

    It's up to you to decide HOW the cell will be used. If the cell has a formula and you will allow people to manually adjust the results of the cell, the formula will go away.

    If you're working off of a template, so each time you open a new copy all your formulas are in place and intact, this is fine. But if this isn't a template and you're working in your main document all the time, then this bad.

    If the results in a formula cell are notably wrong and require adjusting, your process should allow the user(s) to adjust the source cells the formula uses to complete its calculation, hopefully allowing the calculation to correct itself.

    If you decide to allow direct entry into those cells, then those formulas will go away forever.

    Even if we create a macro to put the formulas back in for you, you've already indicated the formulas are giving the wrong results, so you would be forcing bad answers back into those cells.

  27. #27
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Create relationship between 2 spreadsheets

    I think I need clarification on what you mean by the words "entries to those fields".

    You are asking about manual entries into a cell with a formula, not just the ability to select the cell but not change anything?

  28. #28
    Registered User
    Join Date
    04-19-2010
    Location
    Minneapolis
    MS-Off Ver
    Excel 2008 for Mac
    Posts
    19

    Re: Create relationship between 2 spreadsheets

    So now that I have this all done, I want to load this onto our school server. That way several of us can issue lockers to students at the beginning of the school year. I was looking at the tool Protect Shared Workbook. Can you tell me what Protect Shared Workbook does? Will that allow more than one person to use the workbook at the same time, so for example; one person can issue lockers starting with #2001, while another person beginning with #3001, etc.? When I use just Protect Workbook (not shared) it tells me that it is a read only file. But with Protect Shared Workbook, it allows me to enter data. Thanks again. You will be glad that class is out at the end of this week, so you won't have to hear from me for some time, if ever, again.

  29. #29
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Create relationship between 2 spreadsheets

    I don't personally know anything about that particular tool, and it's not actually related to this thread's topic. Best to mark this thread solved and start a new thread with a new title, new threads garner the most attention so you will get a lot more feedback than you would on this thread, which is now pretty much just you and me.

    Please click EDIT in your original post, click GO ADVANCED and set the PREFIX box to SOLVED. If the prefix box is no longer available in advanced mode, just add [SOLVED] to the start of the title.

  30. #30
    Registered User
    Join Date
    05-07-2013
    Location
    Karachi
    MS-Off Ver
    Excel 2007
    Posts
    1

    Re: Create relationship between 2 spreadsheets

    Nice one .. it works

  31. #31
    Registered User
    Join Date
    04-19-2010
    Location
    Minneapolis
    MS-Off Ver
    Excel 2008 for Mac
    Posts
    19

    Re: Create relationship between 2 spreadsheets

    Quote Originally Posted by jawwad_jm View Post
    Nice one .. it works
    Actually the one you commented on is an old question on a different spreadsheet and workbook. My latest one is for a lookup function from one spreadsheet to populate another spreadsheet.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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