Forum Discussion

Kerk's avatar
Kerk
Frequent Visitor
4 years ago
Solved

GENERATESERIES using 0.01 increments

Hello everyone,

 

I am creating a table, which I will use to reference duration down to milliseconds.

For this reason I am using 

 

Time = GENERATESERIES(0.01,1800,0.01)

 

Eveything seems ok until it gets to number 0.81, following that numbers start getting ugly and I see no reason for this happening:

 

 

 

Am I missing something or looks like a bug?

Any ideas?

Thanks 

  • Hi Kerk 

    Please change the number of decimal places from "Auto" to 2.

    Kind regards,

    Rohit


    Please mark this answer as the solution if it resolves your issue.
    Appreciate your kudos😊

3 Replies

  • Lol, that's weird.
    This work?

    GenerateSeries = GENERATESERIES(0.01,1800,round(0.01,2))

    Or
    format column with only 2 decimals?

     

  • Hi Kerk 

    Please change the number of decimal places from "Auto" to 2.

    Kind regards,

    Rohit


    Please mark this answer as the solution if it resolves your issue.
    Appreciate your kudos😊

    • Kerk's avatar
      Kerk
      Frequent Visitor

      Thank you for getting back to me. Rounding workaround does the job, however I am concerned somethings is wrong with my installation.