in
    

MV Reports

Last post 08-22-2008 8:18 AM by Feng Yang. 13 replies.
Page 1 of 1 (14 items)
Sort Posts: Previous Next
  • 06-06-2008 7:54 AM

    MV Reports

    How do you get the data to show in fractional format? (rounded to the nearest 1/32")  i can't seem to figure it out. 

    I'm using 6.7 build 16.  Thanks.

    www.newenergyworks.com
    AutoCAD '08 with 6.7 Build 104.2
    FF Library Build 10 and Modified Build 11 at the moment
    • Post Points: 20
  • 06-06-2008 9:27 AM In reply to

    Re: MV Reports

    Hello,

     

    Click your Microvellum Configuration button. Under COMPANY NAME is another table area titled NUMERIC UNITS AND DISPLAY. Underneath there, to the right of ACCURACY are two radial buttons, one for DECIMAL, the other for FRACTION.

     

    As far as i can tell, this setting only applies to numbers generated in master cut reports, and most other reports. It does NOT apply to the SHOW PARTS LIST ON DRAWING command.

     

    Have a good day,

     

    Eloy. 

    Eloy T. Antunez III
    NAKAMURA-BEEMAN, INC.
    8520 WELLSFORD PLACE
    SANTA FE SPRINGS, CA. 90670
    PHN: (562)696-1400
    FAX: (562)696-1411
    EANTUNEZ@NBIFIXTURES.COM
    • Post Points: 20
  • 06-06-2008 9:55 AM In reply to

    Re: MV Reports

    are you using crystal reports or the MV generated reports?

    www.newenergyworks.com
    AutoCAD '08 with 6.7 Build 104.2
    FF Library Build 10 and Modified Build 11 at the moment
    • Post Points: 20
  • 06-06-2008 10:06 AM In reply to

    Re: MV Reports

    MV Generated.

     

    I've poked around in crystal reports, but have not fully started using it yet. 

    Eloy T. Antunez III
    NAKAMURA-BEEMAN, INC.
    8520 WELLSFORD PLACE
    SANTA FE SPRINGS, CA. 90670
    PHN: (562)696-1400
    FAX: (562)696-1411
    EANTUNEZ@NBIFIXTURES.COM
    • Post Points: 20
  • 06-06-2008 10:20 AM In reply to

    Re: MV Reports

    hmmm.....what version of 6.7 are you on?   Mine's not working!

    www.newenergyworks.com
    AutoCAD '08 with 6.7 Build 104.2
    FF Library Build 10 and Modified Build 11 at the moment
    • Post Points: 20
  • 06-06-2008 10:53 AM In reply to

    Re: MV Reports

    6.7.704

     

    hmmm. thats the only way i know how to get the decimals to fractions in reports.

     

    i suggest calling techsupport and utilizing the GoToAssist program they offer help with. Amazing support from MV.

    Eloy T. Antunez III
    NAKAMURA-BEEMAN, INC.
    8520 WELLSFORD PLACE
    SANTA FE SPRINGS, CA. 90670
    PHN: (562)696-1400
    FAX: (562)696-1411
    EANTUNEZ@NBIFIXTURES.COM
    • Post Points: 20
  • 06-06-2008 11:01 AM In reply to

    Re: MV Reports

    PKUPMAN:

    If you have Crystal Reports, you can open it up and modify the way values are displayed anywhere within your reports. You could even download the trial version (30 days) and make a bunch of changes to your reports within that time frame if you don't already have the software. That's how I started out, then we decided to just go ahead and keep it.

    -Dan Hamlin

    M.V. version=67_104_2
    Autocad version= R17 (2007)
    Library=Custom
    O.S.=Windows XP Professional
    Cpu=P4_3GHz
    Ram=3GB
    • Post Points: 20
  • 06-09-2008 8:34 AM In reply to

    Re: MV Reports

    if you are editing crystal heres a formula for fractions:

    NumberVar raw :={CombinedParts.Length};
    NumberVar wholeNumber := int(raw);
    NumberVar decInput := round (raw - Wholenumber , 5);
    NumberVar numerator :=1;
    NumberVar denominator :=1;
    NumberVar decimalFraction := numerator / denominator ;
    Do ((If decimalFraction < decInput
    Then numerator := numerator + 1
    Else ( denominator := denominator + 1 ;
    numerator := truncate(decInput * denominator)))
    ;decimalFraction := numerator / denominator )
    While decimalFraction <> decInput;

    (if wholenumber > 0
    then totext(wholeNumber,0,"") + " "
    else "")
    &
    (if numerator > 0
    then totext(numerator,0 , "") & "/" & totext(denominator,0 , "")
    else "")

     

    and just replace the first line field combinedparts field to what ever field you need to be in fractions

    and in the third line where the 5 is type the number of places to round to.

    Aaron Schimmelpfennnig

    http://www.brightoncabinetry.com
    • Post Points: 20
  • 07-10-2008 1:30 PM In reply to

    Re: MV Reports

    Hello All,

    If you are using the Crystal Report, please make sure you download the lastest CR9+ package, and there is a function to covert the number into whatever format you set in the Microvellum Options screen. Either is faction or decimal.

    The formula can be found in the "Job Summary Report", under the formula called: "MultiFormatCutLength".

    "MVCobjLinOptMVFormatNumber" is the name of the function. Below is a sample:

    Dim TheNumber As Double
    Dim DecimalPlaces As Number
    Dim RoundingAccuracy As Number
    If {Jobs.UnitOfMeasure} = 0 Then
        DecimalPlaces = 1 Else
        DecimalPlaces = 3
    End If
    If {Jobs.ConvertUnits} = 0 Then
        RoundingAccuracy = {Jobs.Accuracy} Else
        RoundingAccuracy = .5
    End If
    TheNumber = {Last_Batch.Cut Length}
    Formula = MVCobjLinOptMVFormatNumber (TheNumber, RoundingAccuracy, {Jobs.NumberFormat}, DecimalPlaces)

    The function will look at the setting in the MV options screen. Hope this helps.

    Thanks.

    Feng

    • Post Points: 20
  • 08-07-2008 11:15 AM In reply to

    Re: MV Reports

     Hi,

     

    I've already asked this question here but this might be a better route to continue this thread.

     

    I've seen those functions in almost every Report that MV comes with.  The problem I'm having is when I need to edit those reports to suit my company's needs, it won't let me preview what the report is going to look like because Crystal Reports XI doesn't recognize those functions.  Is there a patch or update that will allow CR to be able to use those MV functions?

     

    Thanks!

     

    -tscull

    • Post Points: 20
  • 08-08-2008 9:55 AM In reply to

    Re: MV Reports

    Hello Tscull,

    Rather than just open the report in the Crystal Report, I would suggest you create a sample job, process it, and open the report template inside of that sample job (in the release folder). This way, the data has been porpulated into the database, and you should the preview.

    It is way easier to edit/modify the report template this way.

    Hope this helps.

    Thanks.

    Feng

    • Post Points: 35
  • 08-12-2008 1:57 PM In reply to

    Re: MV Reports

     Ok thanks Feng!

    • Post Points: 5
  • 08-22-2008 6:42 AM In reply to

    Re: MV Reports

    So is there not a way to preiew the data in 11.5 since the functions are not being recognized?  I realize I can view it in OverDrive, but it is faster to modify if we can stay in Crystal and view the report also.

     

     

    • Post Points: 20
  • 08-22-2008 8:18 AM In reply to

    Re: MV Reports

    You should open the report template in Crystal Report. What I try to say is: you should open the template in the sample job which already has the propulated data. If you just open the template from the Microvellum Template folder, you won't be able to see any data, just the layout.

    Hope that helps. Thanks.

    Feng

    • Post Points: 5
Page 1 of 1 (14 items)
Powered by Community Server (Commercial Edition), by Telligent Systems