Sage 100

 View Only
Expand all | Collapse all

v2014 Std - Trying to import from an *.XLSX (Excel

Therese Logeais

Therese Logeais10-08-2015 13:26

  • 1.  v2014 Std - Trying to import from an *.XLSX (Excel

    Posted 10-08-2015 11:32
    v2014 Std - Trying to import from an *.XLSX (Excel Version 12) file - Physical Inventory counts with VI. Spreadsheet's Row 1 & Row 2 are header rows, data starts in row three. If I delete header rows, import works. Will VI's Skip Record or Select Record function allow me to keep the headers in the spreadsheet and still import the data? Which one should I use? Any tricks to make it work?.


  • 2.  RE: v2014 Std - Trying to import from an *.XLSX (Excel

    Posted 10-08-2015 12:02
    Yes, the Skip record should work if you have it explicitly look for the field names (or a subset of the first X characters).


  • 3.  RE: v2014 Std - Trying to import from an *.XLSX (Excel

    Posted 10-08-2015 12:16
    Wow, two Skip record responses today! @JeffSchwenk https://90minds-com.socialcast.com/stream/live#


  • 4.  RE: v2014 Std - Trying to import from an *.XLSX (Excel

    Posted 10-08-2015 12:19
    The XLSX import functionality actually works now. Can't tell you how long I have been using CSV or TXT imports. @MichaelMcDonald - Is this truly dependable or filled with quirks that you have to navigate around? Are you saying that the entire import fails if you don't skip the header record rows? I would have thought those two LINES will fail and all others (with valid item numbers) would import.


  • 5.  RE: v2014 Std - Trying to import from an *.XLSX (Excel

    Posted 10-08-2015 12:33
    @SteveIwanowski - I'm not sure I understand what you mean?? The 1st Row has column headings --- Cell A1= ""ABC Company"", B1=""Bin"",C1=""Warehouse"",D1=""Item"", etc. 2nd Row has column headings -- Cell A2=""Item Code"",B2=""Location"",C2=""ID"",D2=""Description"", etc. How to set the parameter in the Skip Record to ignore row 1 and row 2?


  • 6.  RE: v2014 Std - Trying to import from an *.XLSX (Excel

    Posted 10-08-2015 12:41
      |   view attached
    On the Record tab in the vi job, you can test for the first or many first characters in the first (or other field) to skip.


  • 7.  RE: v2014 Std - Trying to import from an *.XLSX (Excel

    Posted 10-08-2015 12:44
    I would set the Skip to look for Value = ""ABC Company"" in Column 1, Length = 11. And then for Value = ""Item Code"" in Column 1, Length = 9


  • 8.  RE: v2014 Std - Trying to import from an *.XLSX (Excel

    Posted 10-08-2015 12:44
      |   view attached
    I would use the ""record"" tab then skip record. see attached.


  • 9.  RE: v2014 Std - Trying to import from an *.XLSX (Excel

    Posted 10-08-2015 12:47
      |   view attached
    @JeffSchwenk - The whole VI import fails with an Error 42 - if I try to read the heading rows. If I delete those two rows from my .XLSX sheet then the VI import works. BUT the client wants to keep the headings in the count spreadsheet for future readability.


  • 10.  RE: v2014 Std - Trying to import from an *.XLSX (Excel

    Posted 10-08-2015 12:52
    That's because the header field that is the column for Qty is a string in the headers. If you skip those records using the stuff above you should be fine.


  • 11.  RE: v2014 Std - Trying to import from an *.XLSX (Excel

    Posted 10-08-2015 13:16
    Attached is sample *.XLSX count sheet, my adjusted Skip Records and subsequent Error 42 message. Any Idea's TIA


  • 12.  RE: v2014 Std - Trying to import from an *.XLSX (Excel

    Posted 10-08-2015 13:18
    Put a number in column 5 of both header lines and see if it is indeed skipping them


  • 13.  RE: v2014 Std - Trying to import from an *.XLSX (Excel

    Posted 10-08-2015 13:26
    Why is it looking for a csv file?


  • 14.  RE: v2014 Std - Trying to import from an *.XLSX (Excel

    Posted 10-08-2015 13:27
    Could it be that Item code is not left justified?


  • 15.  RE: v2014 Std - Trying to import from an *.XLSX (Excel

    Posted 10-08-2015 13:29
    Why don't you try removing one row of the headers at a time to see if one of the skip's is working or not working.


  • 16.  RE: v2014 Std - Trying to import from an *.XLSX (Excel

    Posted 10-08-2015 13:53
    I think I would add a column at the beginning, one character wide, and flag the first two rows with an ""S"" in that column. Then the skip record is easily configured in VI.


  • 17.  RE: v2014 Std - Trying to import from an *.XLSX (Excel

    Posted 10-08-2015 14:06
    Tried all of the above suggestions. Thank you! But the only way I can get the import to work is if I remove BOTH row 1 (Column Headings) AND row 2 (Column Headings). So sometimes the client/customer doesn't always get what they want. They should be happy they don't have to hand enter the count sheets into SAGE 100 Physical Count line by line. Thanks Again.


  • 18.  RE: v2014 Std - Trying to import from an *.XLSX (Excel

    Posted 10-09-2015 10:26
    I see you created two skip records, but not any Standard record definition. I have always had to create a column 1 <> blanks kind of definition for the Standard to make things work... be interested to know if it works for you


  • 19.  RE: v2014 Std - Trying to import from an *.XLSX (Excel

    Posted 10-09-2015 10:27
    Be sure to create the Standard after the two skips....


  • 20.  RE: v2014 Std - Trying to import from an *.XLSX (Excel

    Posted 10-10-2015 11:19
      |   view attached
    Holy Molely @RandyMarion - That was the trick!! I put the Skip Records before the Standard Record and the import WORKED!! THANKS!!!