Pulling data from XactMeasure

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Pulling data from XactMeasure

    Does anyone know if there is a way to pull a MAX and MIN value from a true position in XactMeasure?

    I want to be able to see
    MIN = .0017
    MAX= .0036

    When I try ITEM95.TP.MAX it always = 0
    Maybe there is another way to write it that PCDMIS will understand?



    Capture.JPGCapture1.JPG

    Thanks in advance for the help
    Attached Files
    Please Join The Effort.
    https://www.pcdmisforum.com/forum/pc...o-metric/page2 (Comment #17)

  • #2
    Use the GETTEXT function.

    Code:
    ASSIGN/V1=GETTEXT(688,1,{ITEM95})
    ASSIGN/V2=GETTEXT(688,2,{ITEM95})
    ASSIGN/V3=GETTEXT(688,3,{ITEM95})
    ASSIGN/V4=GETTEXT(688,4,{ITEM95})
    ASSIGN/V5=GETTEXT(688,5,{ITEM95})
    ASSIGN/V6=GETTEXT(688,6,{ITEM95})
    ASSIGN/VMAX=MAX(ARRAY(V1,V2,V3,V4,V5,V6))
    ASSIGN/VMIN=MIN(ARRAY(V1,V2,V3,V4,V5,V6))
    ​​​​​​​
    Whatever a man sows, he shall reap.

    Comment


    • #3
      Hey @bfire85 where is the 688 from?
      Please Join The Effort.
      https://www.pcdmisforum.com/forum/pc...o-metric/page2 (Comment #17)

      Comment


      • #4
        Originally posted by LaserJay View Post
        Hey @bfire85 where is the 688 from?
        If you do a PC-DMIS Help File search for "A List of Available Data Types", it gives you command numbers for everything you need to extract data from.
        Whatever a man sows, he shall reap.

        Comment


        • #5
          Originally posted by bfire85 View Post

          If you do a PC-DMIS Help File search for "A List of Available Data Types", it gives you command numbers for everything you need to extract data from.
          Thank you bfire85 ! That works great!
          Please Join The Effort.
          https://www.pcdmisforum.com/forum/pc...o-metric/page2 (Comment #17)

          Comment


          • #6
            Did something change on this when they updated to GEOTOL?
            I cant get this to work

            ASSIGN/V1=GETTEXT(688,1,{ITEM95})
            Please Join The Effort.
            https://www.pcdmisforum.com/forum/pc...o-metric/page2 (Comment #17)

            Comment


          • #7
            68 is interesting. Not sure how it could be applied in DMIS. But we were all aware of this because at 69, you got to get up and turn around.

            Capture.JPG

            (In Memory of my Loving wife, "Ronda" who I lost March 7, 2016. I love you baby.)
            They say "Nobody's Perfect." I must be Nobody.

            Comment


            • R2ah1ze1l
              R2ah1ze1l commented
              Editing a comment
              I'd 'like' it, but it keeps erroring out. Now that is funny

            • KIRBSTER269
              KIRBSTER269 commented
              Editing a comment
              R2ah1ze1l wondering if anybody would have got that.

          • #8
            neil.challinor With the new function is there an easier way to do min and max of a tpos deviation? I dont really want to make an array of 105 of these functions.

            ASSIGN/V1=DIM22_1.SEGMENT[1].FEATURE[1-105].MAX
            ASSIGN/V1=DIM22_1.SEGMENT[1].FEATURE[1-105].MIN

            something like this? (but that actually works lol )
            Please Join The Effort.
            https://www.pcdmisforum.com/forum/pc...o-metric/page2 (Comment #17)

            Comment


            • #9
              'LaserJay, or anyone else that might know, I appear to have had success pulling the min/max from the GeoTol using "FeatureName.SEGMENT[1].FEATURE[1-99].MAX".

              Does anyone know the correct syntax for pulling the diameter min/max from the GeoTol True Position?

              Comment


              • Henniger123
                Henniger123 commented
                Editing a comment
                with a Basic-script its posible, maybe this is a thing for you ?

                i dont know if its posible with assign command

            • #10
              If 688 is for Xactmeasure position how do you know that if 688 is LINE2_MEAS, So what want to know is there another chart that tells you what LINE2_MEAS is?

              Comment


            • #11
              that still shows me LINE2_MEAS how do i know what LINE2_MEAS is position?

              Comment

              Related Topics

              Collapse

              Working...
              X