Page 1 of 2 12 LastLast
Results 1 to 10 of 17
  1. #1
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,517
    Plugin Contributions
    0

    Default Easy Populate CSV and Excel: how do I update all my product data quickly?

    Hi,

    I am using Easy Populate csv and I converted it over to Excel.

    The one I downloaded from my site has 430 items.
    My actual warehouse has over 2,000 items.

    I have to type each item number to get the qty. It takes forever.

    What is the best way on Excel that the downloaded spreadsheet from my database can only pull the item numbers and its quantities from my warehouse spreadsheet all in one click?

  2. #2
    Join Date
    Jul 2012
    Posts
    16,732
    Plugin Contributions
    17

    Default Re: Easy Populate CSV and Excel: how do I update all my product data quickly?

    I believe there is a bit of a mix up in terminology with regards to this issue, besides that the issue is more about how to use Excel than it is about a ZC specific problem, but let's see what can be done to at least clarify the issue.

    In the end of things, you have two Excel spreadsheets each representing some product info. They both have a common field with the other (primary key) and you want to pull information from one spreadsheet into the other spreadsheet for the matching "product".

    This is a perfect reason to use the excel function "vlookup" the criteria to use that function is that the column to be looked up needs to be the left most column of a range of cells that includes your primary key and the column to be returned back and the other is that the primary key needs to be unique for each row and sorted. If not unique then just the first row is returned. For stock quantities that's not an issue provided that the duplicate primary key represents a linked product and not some different product.

    Anyways, let's say you want to update your store (small list) using the values from your warehouse (large list), then in the column for quantity (or for testing create a column adjacent to that), you would enter in an equation like:
    Code:
    =vlookup($A2,'otherspreadsheet'!$A2:$Z431, 3)
    What this does is use the value in cell A2 (first column, second row which is where one might expect the primary key to be with the first row being the field headers) and compare/search the column A of the other spreadsheet for the value that matches the value in A2 of the current sheet. If it is found, then it will use/return the data from the 3rd column of the column range of A-Z. Z was arbitrarily chosen and the bottom of the range of 431 was chosen to be the 430 products mentioned above plus the first row as a header.

    Anyways, if the warehouse quantity is in fact in that 3rd column, then it would be represented in this cell with the equation. If the equation works, then copy and paste it down for the remaining rows. Then copy and paste special (values) to lock in the numbers for saving the spreadsheet.

    Hopefully that helps and I didn't bark up the wrong tree, kind of took a shot at what I understood based on the provided information.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  3. #3
    Join Date
    Jul 2012
    Posts
    16,732
    Plugin Contributions
    17

    Default Re: Easy Populate CSV and Excel: how do I update all my product data quickly?

    Ohh, as for a "one-click solution"? Probably need to repeat the process recording the actions as a macro that then may need a little modification so that it could work each and every time regardless of the size of the table(s), though the filename action may be a slightly different story having to choose from either always using a specific filename or being asked to identify the file(s) to use for this "comparison"/upgrade.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  4. #4
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,517
    Plugin Contributions
    0

    Default Re: Easy Populate CSV and Excel: how do I update all my product data quickly?

    Quote Originally Posted by mc12345678 View Post
    Ohh, as for a "one-click solution"? Probably need to repeat the process recording the actions as a macro that then may need a little modification so that it could work each and every time regardless of the size of the table(s), though the filename action may be a slightly different story having to choose from either always using a specific filename or being asked to identify the file(s) to use for this "comparison"/upgrade.
    Ok, EP4 (Easy Populate)v4 ZC in Excel (Item#)Column A (Qty)Column T
    My main warehouse in excel (Item#)Column A (Qty)Column J

  5. #5
    Join Date
    Aug 2007
    Location
    Gijón, Asturias, Spain
    Posts
    2,584
    Plugin Contributions
    30

    Default Re: Easy Populate CSV and Excel: how do I update all my product data quickly?

    one-click solution
    How about a no-click solution?

    For taking multiple sources of data and doing absolutely anything you can think of with any data in any columns/fields to produce some other file or even stuff it straight into another database, I use Pentaho Data Integration (Kettle) Community.

    Can be a pain to get working, but worth the learning curve, it's free and frankly flipping awesome, does anything to anything, from any source to any destination.
    Once you have created the job/data transformation, you can make it auto-running/on a schedule.
    Steve
    github.com/torvista: Spanish Language Pack, Google reCaptcha, Structured Data, Multiple Copy-Move-Delete, Image Checker, BackupMySQL Admin/Auto...

  6. #6
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,517
    Plugin Contributions
    0

    Default Re: Easy Populate CSV and Excel: how do I update all my product data quickly?

    Quote Originally Posted by torvista View Post
    How about a no-click solution?

    For taking multiple sources of data and doing absolutely anything you can think of with any data in any columns/fields to produce some other file or even stuff it straight into another database, I use Pentaho Data Integration (Kettle) Community.

    Can be a pain to get working, but worth the learning curve, it's free and frankly flipping awesome, does anything to anything, from any source to any destination.
    Once you have created the job/data transformation, you can make it auto-running/on a schedule.
    I am sorry it doesn't work for me.

  7. #7
    Join Date
    Jul 2012
    Posts
    16,732
    Plugin Contributions
    17

    Default Re: Easy Populate CSV and Excel: how do I update all my product data quickly?

    Quote Originally Posted by wmorris View Post
    I am sorry it doesn't work for me.
    For clarity, do you mean that having that other software and that it's process is something that couldn't fit your goal or do you mean you had difficulty getting it to work?
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  8. #8
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,517
    Plugin Contributions
    0

    Default Re: Easy Populate CSV and Excel: how do I update all my product data quickly?

    Quote Originally Posted by mc12345678 View Post
    For clarity, do you mean that having that other software and that it's process is something that couldn't fit your goal or do you mean you had difficulty getting it to work?
    Actually I got it to work. Thanks Anyways.

  9. #9
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,517
    Plugin Contributions
    0

    Default Re: Easy Populate CSV and Excel: how do I update all my product data quickly?

    Quote Originally Posted by mc12345678 View Post
    For clarity, do you mean that having that other software and that it's process is something that couldn't fit your goal or do you mean you had difficulty getting it to work?
    Well I have an issue.

    I downloaded my InventoryProductStatus in Excel. Then I open an CSV editor. I managed to get my Item numbers pulled for the quantities. using the =vlookup in excel then I copied the changes from excel to the CSV editor then saved it then uploaded to Easy Populate 4 and see any changes and there were no change in the Admin.

  10. #10
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,517
    Plugin Contributions
    0

    Default Re: Easy Populate CSV and Excel: how do I update all my product data quickly?

    Quote Originally Posted by wmorris View Post
    Well I have an issue.

    I downloaded my InventoryProductStatus in Excel. Then I open an CSV editor. I managed to get my Item numbers pulled for the quantities. using the =vlookup in excel then I copied the changes from excel to the CSV editor then saved it then uploaded to Easy Populate 4 and see any changes and there were no change in the Admin.
    Nevermind I got it figured out. I forgot import it into the Database.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v151 Difference between easy populate and Excel Populate
    By Kevin205 in forum General Questions
    Replies: 7
    Last Post: 22 Jan 2013, 04:33 AM
  2. Easy Populate and Excel data handling
    By jackryan in forum All Other Contributions/Addons
    Replies: 13
    Last Post: 12 Aug 2010, 04:22 AM
  3. Easy Populate 1.2.5.7b.csv : how to update category name
    By bgallot in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 2 Apr 2010, 12:30 AM
  4. Easy Populate CSV: problem when open Complete File in excel
    By henryvuong in forum All Other Contributions/Addons
    Replies: 14
    Last Post: 25 Feb 2009, 12:15 AM
  5. Inport of data from Excel via easy populate
    By danceswiththewolf in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 3 Oct 2007, 08:03 PM

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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR