hexagon logo

Anybody have Excel Spreadsheet for Pc-Dmis

Has anyone created or know of someone who has an Excel spreadsheet for multi inspection results that works with Cad++ version 2013? A lot of our customers require that we do final inspection reports on multi parts. If the order was for 120pcs we would need to inspect 20pcs out of the lot. I didnt know if there was a spreadsheet that would capture theses results and consolidate them onto one final inspection report instead of Pc-Dmis report and having to print out 20 to 30 pages.
  • This is a bit delayed response, but we use file/writeline commands to output data into a CSV format.
    "C_PATH" as well as a handful of other data points below are assigned earlier in the program
    <code>
    FILE =FILE/OPEN,C_PATH,APPEND
    FILE/WRITELINE,C_FILE,"/PART NUMBER/" + "," + PART
    FILE/WRITELINE,C_FILE,"/ROUTINE NAME/" + "," + ROUTINE
    FILE/WRITELINE,C_FILE,"/LOT#/" + "," + RUN_ID
    FILE/WRITELINE,C_FILE,"/OPERATOR/" + "," + TRACE_FOLDER + "," + "Operator" + "," + OPERATOR
    FILE/WRITELINE,C_FILE,"/SCHEDULED TIME/" + "," + TRACE_FOLDER + "," + "Scheduled Time" + "," + TIME
    FILE/WRITELINE,C_FILE,"/CAVITY ID/" + "," + TRACE_FOLDER + "," + "Position 1" + "," + POS_1
    FILE/WRITELINE,C_FILE,"/DATA/" + "," + CHAR_1 + "1" + "," + AA_1.D.MEAS
    FILE/WRITELINE,C_FILE,"/DATA/" + "," + CHAR_2 + "1" + "," + AC1_1.M.MEAS
    FILE/WRITELINE,C_FILE,"/DATA/" + "," + CHAR_3 + "1" + "," + AC2_1.M.MEAS
    FILE/WRITELINE,C_FILE,"/DATA/" + "," + CHAR_4 + "1" + "," + AC3_1.M.MEAS
    FILE/WRITELINE,C_FILE,"/DATA/" + "," + CHAR_5 + "1" + "," + AD_1.D.MEAS
    FILE/WRITELINE,C_FILE,"/DATA/" + "," + CHAR_6 + "1" + "," + AE_1.M.MEAS
    FILE/WRITELINE,C_FILE,"/DATA/" + "," + CHAR_7 + "1" + "," + AF_1.M.MEAS
    </code>
  • Or you can use this....I snagged it from here somewhere I wish I can credit the author but I cant remember his/her name. Download. Make sure to Reference your PcDmis Object Library version in VBA(this one has PCD 2015 referenced).
  • Or you can use this....I snagged it from here somewhere I wish I can credit the author but I cant remember his/her name. Download


    I was trying to find the thread for this and still have yet to find it, but this CSV is what you want to use for multi-part inspection if you don't want to go into writing a lot of code.
  • 2015 PC-DMIS has an excel output configuration, I do not use that much as what I have seen is a lot of information that I do not need is often sent. that being said there options seem to be wide and playing with that may give you what you want. I am not sure which version this was available in

    I use .csv FPTR with a "writeline" to send 1 line of data per part of measured results every time part routine is run.
    Then I can open the file and save it to review generate reports or capability analysis and send as needed.

    Front end heavy on the coding but manageable
    a code example HTH

    ASSIGN/IRS_31_3X=IRS_31_TP3.X.MEAS
               ASSIGN/IRS_31_3Y=IRS_31_TP3.Y.MEAS
               ASSIGN/IRS_31_3TP=IRS_31_TP3.TP.MEAS
               ASSIGN/IRS32_3=IRS_31_TP3.DF.MEAS
                  ASSIGN/DATA2=IRS_31_1X+","+IRS_31_1Y+","+IRS_31_1TP+","+IRS_31_2X+","+IRS_31_2Y+","+IRS_31_2TP+","+IRS_31_3X+","+IRS_31_3Y+","+IRS_31_3TP+","+IRS32_1+","+IRS32_2+","+IRS32_3
                ASSIGN/ALLDATA=DATA1+","+DATA2
                ASSIGN/PARTRUNVAL=ORACLENUM+","+PART+","+DATE+","+TIME+","+ORDNUM+","+OPNAME+","+PARTNUM+","+ALLDATA+","+TIMESTAMP
    
    FPTR       =FILE/OPEN,Z:\PROGRAMS\XXX\2******\REPORTS\22%%%%%8_REV_1_FIRST_MACHINE_OP_ALL_DATA.csv,APPEND
                FILE/WRITELINE,FPTR,PARTRUNVAL
                FILE/CLOSE,FPTR,KEEP



  • I like this one....prob gonna use it
    Thanks