i tried with replace(num,'k','','all') * 1000
# lucee
s
i tried with replace(num,'k','','all') * 1000
f
you might need to warp trim() around replace since you have a space after the number and before the
k
simpler solution might be:
val(num) * 1000
👍 1