Just to clarify the results shown in the Data Viewer, the value 1.147857619E7 is the same value as 11478576.19 the only difference is the display format. The Data Viewer will always display large floating point (double type) numbers in this way. You can confirm the underlying number is the same regardless of the display format by outputting the value to an Excel spreadsheet, e.g.

If the values you want to sum are currency values with a consistent number of decimal places for all values e.g. 2 D.P. for cents, then you can convert the floating point currency values to the equivalent Cents value. The value can be stored as a long data type and be summed in the Aggregate node. For example, using the following test data in a Create Data node:

It would display in the Data Viewer as:

A Calculate Fields node could be used to calculate the SalesValue in terms of Cents:

Which would result in the following:

The Aggreagate node can then be used to sum the Cents value:

Resulting in the following totoal value in Cents:

If your data is currency values to 4 D.P. the expression in the calculate fields would need to be changed to retain all the significant digits.
See the attached example data flow.
Attached files
Aggregate_Cents_Values - 16 Jun 2020.lna