+ Reply to Thread
Results 1 to 2 of 2

copying data from cells

  1. #1
    Registered User
    Join Date
    02-12-2007
    Posts
    2

    copying data from cells

    I have a list of cells with parts and costs
    then a new list with new costs
    how do i get the new costs into the old list
    Part numbers the same cost different
    Thanks
    Spondy

  2. #2
    Forum Contributor
    Join Date
    03-13-2005
    Posts
    6,195
    Quote Originally Posted by spondy29
    I have a list of cells with parts and costs
    then a new list with new costs
    how do i get the new costs into the old list
    Part numbers the same cost different
    Thanks
    Spondy
    Hi,

    the simple answer is to use VLookup into a new column, with a blank setting for missing 'new' prices, thus something like

    =If(IsError(Vlookup(A1,newprices,2,False)),"",Vlookup(A1,newprices,2,False))

    followed by Copy (the column) and Paste Special = Values (tick Skip Blanks) over the Old Prices, then remove the VLookup column,

    however,

    if you have formula etc using the prices be aware that changing the prices will also change all of those formula values.

    hth
    ---
    Si fractum non sit, noli id reficere.

+ 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