+ Reply to Thread
Results 1 to 5 of 5

handling linked internet data

  1. #1
    Registered User
    Join Date
    10-12-2011
    Location
    DC
    MS-Off Ver
    Excel 20037
    Posts
    2

    handling linked internet data

    I have a spread sheet that has 1 page (call it the import page) where we directly bring in from an internet link a list of item and prices. A second page in that spreadsheet references various prices and items from the first page.

    Problem is, from time to time, we add a new object to the internet source of data. This results in a new row (or 2) added to the import page.

    The result of which is all our formulas that referred to the data on the import page are no longer accurate, as the item that the formula was referring to has been "pushed down" to a lower row on the import page.

    What is the most efficient way for us to structure this to avoid having to redo the links\formulas when the the import page changes?

  2. #2
    Forum Expert GeneralDisarray's Avatar
    Join Date
    09-15-2011
    Location
    Pittsburgh, PA, USA
    MS-Off Ver
    Windows Excel 2016
    Posts
    1,416

    Re: handling linked internet data

    need example sheet if you can provide one
    Remember, saying thanks only takes a second or two. Click the star icon(*) below the post you liked, to give some Rep if you think an answer deserves it.

    Please,mark your thread [SOLVED] if you received your answer.

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

    Re: handling linked internet data

    Your sheet2 should have non-changing references that can be used to "match" to the sheet1 variable placement of the same moving information. If one string being imported was "doodads, $4.50" then on sheet2 you would have a cell permanently designed to find "doodads". So put "doodads" in A2, then in B2 a "find" formula will always be able to find it on sheet1 and bring over the price:

    =VLOOKUP(A2, Sheet1!$A:B, 2, 0)
    _________________
    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!)

  4. #4
    Registered User
    Join Date
    10-12-2011
    Location
    DC
    MS-Off Ver
    Excel 20037
    Posts
    2

    Re: handling linked internet data

    I have a very simple example sheet I made up. Could you show me how you'd change the links to use Vlookup?

    Much appreciated.

    Bruce
    Attached Files Attached Files

  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: handling linked internet data

    Put this formula in B6 and copy down:

    =VLOOKUP(A6, 'Data Feed'!$A:$B, 2, 0)


    Compare that formula to the one I gave as an example above...

+ 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