Floating integers / Floating decimals, rounding

How does DOMO's version of MySQL handle floating integers when rounding?

 

I went to round a field in my Dataflow. So that I could avoid changing 50 cards and removing the decimals in this feild. 

Round(`Trans`,0)

 

When aggregated in the card I am showing my total trans is far lower than it should be. opposed to a bit higher after the rounding. 

Comments

  • Neeti
    Neeti Member

    Hi,

     

    May be you can lock your datatype in workbench or can use ROUND function to get the desired output.

     

    You can try below option in ETL or beast mode as well :

     

    https://dojo.domo.com/t5/Beast-Mode-ETL-Dataflow/Formatting-Multiple-Summary-Numbers-with-Commas/m-p/32344#M4834

     

    https://dojo.domo.com/t5/Beast-Mode-ETL-Dataflow/Issue-converting-string-to-number-in-beast-mode/m-p/41907#M7023

     

    **Say "Thanks" by clicking the "heart" in the post that helped you.
    **Please mark the post that solves your problem by clicking on "Accept as Solution"

     

    Thanks,

    Neeti

  • @DP_BA 

    What do you mean by floating integers? Typically when talking about data types floats and integers are two very different data types with floats (DECIMALS in Domo) containing a decimal point and integers do not.

     

    Is it just a matter that youre data is represented as a float with numbers always followed by .0? Do you have sample data?

     

    Typically if you're doing rounding and the numbers are off means the roudning is causing the data to be off.

     

    For example if you have the following data points: 1.4, 1.4, 1.4  Roudning the numbers before the sum would cause them all to be 1 for a total of 3 but when you add them all together it'd equal 4.2 (rounded after the sum would be 4) causing different resulting numbers.

    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**