Skip to main content
Daniela_Puizina
Level 2
June 20, 2019
Respondido

Adding commas to values

  • June 20, 2019
  • 3 comentários
  • 2714 Visualizações

Sanford Whiteman Hi Sanford - Continuing the discussion here!

So my comma problem - I'm trying to create this script (below) which works but I don't know what to do about adding a comma to the countless values that could be displayed if under 25k. Any ideas?

 

#set ($scorecap = $convert.toNumber(${lead.cap25}))
#if ( $scorecap > 25000)
$25,000
#else
${lead.cap25}
#end
Este tópico foi fechado para respostas.
Melhor resposta por SanfordWhiteman
#set( $scoreCapped = $math.min($convert.toNumber($lead.cap25),25000) )
#set( $scoreFormatted = $number.format( "${esc.h},${esc.h}${esc.h}${esc.h}", $scoreCapped ) )
${scoreFormatted}

3 comentários

SanfordWhiteman
Level 10
June 20, 2019
#set( $scoreCapped = $math.min($convert.toNumber($lead.cap25),25000) )
#set( $scoreFormatted = $number.format( "${esc.h},${esc.h}${esc.h}${esc.h}", $scoreCapped ) )
${scoreFormatted}
Daniela_Puizina
Level 2
June 20, 2019

Thank you!!

SanfordWhiteman
Level 10
June 20, 2019

Sure, let me know if any of the code isn't self-explanatory.