Passing a decimal (real) value to report as a parameter

I am looking for a way to pass a float value to a report template to do some value scaling. Basically I am looking to multiple a historical value (gallons) by a specific gravilty ( float) to convert to pounds.

From what I see, report data parameters cannot be of type float…

Use ‘double’ as the parameter type; ‘double’ is a double-precision (64-bit) floating point, rather than single precision (32-bit) ‘float’ type.

1 Like

Oh!.

I Thought Double was Double INT (DINT)…

That worked…!

Thanks