Hi Dan,
I need to add a dollar sign to to the following digits $1,292,788. I’m using this expression below
startValue = 0;
endValue = 1292788;
dur = 8.5; //seconds
s = "" + Math.round(linear(time,0,dur,startValue,endValue));
if (s.length > 6)
s.substr(0,s.length-6) + "," + s.substr(-6,3) + "," + s.substr(-3,3)
else if (s.length > 3)
s.substr(0,s.length-3) + "," + s.substr(-3,3)
else
s