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