Hi, Is there an existing function on Appian to convert this value for example 100,000 to 100k? this goes on by million or billion. Thanks2
Discussion posts and replies are publicly visible
You can use this customized rule that I created for myself
a!match( value: ri!num, whenTrue: and(len(fv!value)>=4,len(fv!value)<=6 ), then: concat(round(fv!value/1000,2),"k"), whenTrue: and(len(fv!value)>=6,len(fv!value)<=9 ), then:concat(round(fv!value/1000000,2),"m"), whenTrue:len(fv!value)<=9, then: concat(round(fv!value/10000000,2),"b"), default: fv!value )