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.
Parents
  • 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



Reply
  • 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



Children
No Data