hexagon logo

File I/O commands for MS Excel

Can someone please post a code example of how to read from and write to particular cells in MS Excel documents? And does the excel report have an NC-only option like the basic reports do?
Parents
  • Something like this may be easy, then all you need to do is write a quick macro in Excel that reads the cell then enters the value from the file. There are a lot of ways you can go with this, but this seems simple enough to start from and use in programs.

    SUBROUTINE/OUTPUT1,
    EXCELPOS = : EXCEL CELL,
    VALUE = : VALUE,
    =
    FPTR =FILE/OPEN,C:\CMM\Subroutines\Stuff,APPEND
    ASSIGN/RITEVAL=CONCAT(EXCELPOS,",",STR(VALUE))
    FILE/WRITELINE,FPTR,RITEVAL
    FILE/CLOSE,FPTR,KEEP
    ENDSUB


    CIR1 =FEAT/CONTACT/CIRCLE/DEFAULT,CARTESIAN,IN,LEAST_SQR
    THEO/<2.9237,0.1703,2.7565>,<0,0,1>,0.46
    ACTL/<2.9237,0.1703,2.7565>,<0,0,1>,0.46
    TARG/<2.9237,0.1703,2.7565>,<0,0,1>
    START ANG=3.3333,END ANG=183.3333
    ANGLE VEC=<1,0,0>
    DIRECTION=CCW
    SHOW FEATURE PARAMETERS=NO
    SHOW CONTACT PARAMETERS=YES
    NUMHITS=3,DEPTH=0.1968,PITCH=0
    SAMPLE METHOD=SAMPLE_HITS
    SAMPLE HITS=0,SPACER=0
    AVOIDANCE MOVE=NO,DISTANCE=0.3937
    FIND HOLE=DISABLED,ONERROR=NO,READ POS=NO
    SHOW HITS=NO
    CS1 =CALLSUB/OUTPUT1,C:\CMM\Subroutines\Wimpies_Subs_Inch.PRG:"G10" ,STR(CIR1.D)
Reply
  • Something like this may be easy, then all you need to do is write a quick macro in Excel that reads the cell then enters the value from the file. There are a lot of ways you can go with this, but this seems simple enough to start from and use in programs.

    SUBROUTINE/OUTPUT1,
    EXCELPOS = : EXCEL CELL,
    VALUE = : VALUE,
    =
    FPTR =FILE/OPEN,C:\CMM\Subroutines\Stuff,APPEND
    ASSIGN/RITEVAL=CONCAT(EXCELPOS,",",STR(VALUE))
    FILE/WRITELINE,FPTR,RITEVAL
    FILE/CLOSE,FPTR,KEEP
    ENDSUB


    CIR1 =FEAT/CONTACT/CIRCLE/DEFAULT,CARTESIAN,IN,LEAST_SQR
    THEO/<2.9237,0.1703,2.7565>,<0,0,1>,0.46
    ACTL/<2.9237,0.1703,2.7565>,<0,0,1>,0.46
    TARG/<2.9237,0.1703,2.7565>,<0,0,1>
    START ANG=3.3333,END ANG=183.3333
    ANGLE VEC=<1,0,0>
    DIRECTION=CCW
    SHOW FEATURE PARAMETERS=NO
    SHOW CONTACT PARAMETERS=YES
    NUMHITS=3,DEPTH=0.1968,PITCH=0
    SAMPLE METHOD=SAMPLE_HITS
    SAMPLE HITS=0,SPACER=0
    AVOIDANCE MOVE=NO,DISTANCE=0.3937
    FIND HOLE=DISABLED,ONERROR=NO,READ POS=NO
    SHOW HITS=NO
    CS1 =CALLSUB/OUTPUT1,C:\CMM\Subroutines\Wimpies_Subs_Inch.PRG:"G10" ,STR(CIR1.D)
Children
No Data