+ Reply to Thread
Results 1 to 5 of 5

Sharing Portions of a spreadsheet

  1. #1
    Registered User
    Join Date
    02-18-2008
    Posts
    6

    Sharing Portions of a spreadsheet

    I have a spreadsheet that needs to have certain fields updated by competing vendors. The spreadsheet is too complex to sort by vendor cut and paste into a new workbook and send to them for updating. I would like to be able to password protect or hide groups of cells. I am open to ideas. Please.

  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: Sharing Portions of a spreadsheet

    Connect the portions of your sheet that has their information to a second workbook using simple = formulas or even INDEX/MATCH formulas. Then give them their own workbook to update.

    When they update it and send it back to you, as long as you store it on your computer(s) in the same place, your main workbook will always be able to access this exterior book and keep the values updated.
    _________________
    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
    02-18-2008
    Posts
    6

    Re: Sharing Portions of a spreadsheet

    Quote Originally Posted by JBeaucaire View Post
    Connect the portions of your sheet that has their information to a second workbook using simple = formulas or even INDEX/MATCH formulas. Then give them their own workbook to update.

    When they update it and send it back to you, as long as you store it on your computer(s) in the same place, your main workbook will always be able to access this exterior book and keep the values updated.
    OK Let me see if I understand. If I place = formula that says a cell in my original spreadhseet equals a cell in the worksheet I give them to update ,it will update the original spreadsheet automatically. I know how to do that within a spreadsheet ie if in cell A2 I placed the formula =C3, A2 would then display the value in C3. How do I reference the cell on want to pull the value from in the separate worksheet I give them to update? Hope I am making sense. I appreciate your help.

  4. #4
    Valued Forum Contributor mudraker's Avatar
    Join Date
    11-10-2003
    Location
    Melbourne, Australia
    Posts
    3,983

    Re: Sharing Portions of a spreadsheet

    scottma


    Edit - Thread Title hass been changed

    Please take a couple of minutes and read ALL the Forum Rules

    Your post does not comply with Rule 5 of our Forum RULES. We have Seven question forums: Miscellaneous, General, Programming, Worksheet Functions, Charting, Excel 2007 Help and New Users. Please choose the appropriate forum, and post your question in ONLY one forum.

    You duplicate thread has been closed
    Last edited by mudraker; 02-27-2009 at 07:28 AM.
    Please Read Forum Rules Before Posting
    Wrap VBA code by selecting the code and clicking the # icon or Read This
    How To Cross Post politely

    Top Excel links for beginners to Experts

    If you are pleased with a member's answer then use the Scales icon to rate it
    If my reply has assisted or failed to assist you I welcome your Feedback.

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

    Re: Sharing Portions of a spreadsheet

    Referencing other cells

    Cell to Cell:

    =A1

    Cell to Sheet:
    =Sheet1!A1

    Cell to workbook:
    =[VendorSheet.xls]Sheet1!A1

    If you want to mimic the exact layout of the VendorSheet in your sheet somewhere, this is a way to do it.

    Not having seen what you're talking about letting them update, it doesn't have to be so mundane. You could give them a list with Product Number, Product Names and Product prices to keep updated. Then if you already have the Product Numbers in your sheet, you can use INDEX(MATCH() formulas to pull over the product desc and prices regardless of where they are in the vendor sheet.

    You sheet:
    Please Login or Register  to view this content.
    Give him his sheet with product codes in the first column. Now, he can sort his sheet any way that makes sense to him, and you can use this formula B2 of your sheet to bring over the Product Desc for the first code found in A2:

    =INDEX([VendorList.xls]Sheet1!$B$2:$B$1000,MATCH(A2,[VendorList.xls]Sheet1!$A$2:$A$1000,0)

    And the price in C2 is brought over the same way:
    =INDEX([VendorList.xls]Sheet1!$C$2:$C$1000,MATCH(A2,[VendorList.xls]Sheet1!$A$2:$A$1000,0)

    No matter where AA-12345 is found in the vendorlist.xls column A, the MATCH will find it, and the INDEX will bring over the associated indexed column value.

+ 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