limit decimals on comparative guage cards

Options

Any one know if a way to limit the number of digits are displayed after the decimal on these guage cards?1.png

 

 

 


“There is a superhero in all of us, we just need the courage to put on the cape.” -Superman

Comments

  • Valiant
    Options

    It might not work in your use case, but I've ended up just creating a new dataset with the final result value for this card type. Depending on how I want to round I either use the Round(), Floor() or Ceiling() function.

     

    Ex: I want 0.072234 (7.2234%) to get rounded up to 7.3%. 

    CEILING(0.072234 * 1000) / 1000

    Hope that helps,

    Valiant

This discussion has been closed.