I need to import the cmm data to exel sheet so our Plexus system can import the data to our checksheets. I made an customized excel form and can sucessfully download the cmm data. but when i try to import to plexus i get get this error. Lil help The following errors occurred during import: |
SpecNo and/or Value columns not defined. Cannot complete import. Valid header values include the following: 'SpecNo', 'Value', 'CavityCode', 'SerialNo' |
Import Excel form to Plexus
Collapse
X
-
Import Excel form to Plexus
Tags: None
-
Are you doing an XLSX or CSV file? We use Plex and it needs to be in a CSV file. You need to have SpecNo column for Plex to read the specification number and Value column for Plex to read the measurement. When I get to the CMM, I'll post some of my code for you. I use the File I/O with PC-DMIS instead of Excel output.Whatever a man sows, he shall reap.
Comment
-
Place this code before the FILE/WRITELINE of the measurements you want to record:
Code:FPTR =FILE/OPEN,C:\temp\test.csv,WRITE FILE/WRITELINE,FPTR,SpecNo,Value
Code:DIM 1= LOCATION OF PLANE PLN2 UNITS=MM ,$ GRAPH=OFF TEXT=OFF MULT=10.00 OUTPUT=BOTH HALF ANGLE=NO AX NOMINAL MEAS +TOL -TOL MAX MIN DEV OUTTOL Y 7.870 7.870 0.500 0.500 7.935 7.828 0.000 0.000 ----#--- END OF DIMENSION 1 [B] ASSIGN/D1=1+","+GETTEXT(328,1,{1}) FILE/WRITELINE,FPTR,D1[/B]
Then when everything is done, at the end of the program add this:
Code:FILE/CLOSE,FPTR,KEEP
Whatever a man sows, he shall reap.
Comment
Related Topics
Collapse
-
by TestedI have a program that I need to chart the out put from. Each time the program is run it collects 15 dimensions. I have a excel sheet made up so that after...
-
Channel: PC-DMIS for CMMs
06-07-2007, 11:34 AM -
-
by cmm43I am interested in importing a mastercam file,can I import direct or does the (.MC9) file need to be translated into a iges file,etc.?
-
Channel: PC-DMIS for CMMs
03-19-2008, 12:59 PM -
-
by AmdgkHi,
We regularly have to perform gauge r&r's/MSA studies. At the moment we export the results into excel format and then cut and paste...-
Channel: PC-DMIS for CMMs
06-01-2015, 05:25 AM -
-
by cfranklinhow do you import a cad model to pcdmis in a IGES or STEP file on Windows 2000???
-
Channel: PC-DMIS for CMMs
07-14-2008, 08:52 AM -
-
by MIKE LAVINHi everybody,
My question to the forum is: Is it possible to IMPORT an excel file into a pcdmis program?
Thanks in advance for any help...-
Channel: PC-DMIS for CMMs
08-26-2011, 01:59 PM -
Comment