Adding commas to values | Community
Skip to main content
Daniela_Puizina
New Participant
June 20, 2019
Solved

Adding commas to values

  • June 20, 2019
  • 2 replies
  • 2677 views

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
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by SanfordWhiteman
#set( $scoreCapped = $math.min($convert.toNumber($lead.cap25),25000) )
#set( $scoreFormatted = $number.format( "${esc.h},${esc.h}${esc.h}${esc.h}", $scoreCapped ) )
${scoreFormatted}

2 replies

Daniela_Puizina
New Participant
June 20, 2019

Thank you!!

SanfordWhiteman
New Participant
June 20, 2019

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

SanfordWhiteman
SanfordWhitemanAccepted solution
New Participant
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}