0 How to use Currency Type in Lava Calculations 2 Hatim Motiwala posted 3 Years Ago I am not able to use Currency Type in Lava Calculations anymore, it used to work before. I am running Rock version 12.6For example if I have a global attribute "UnitPrice" defined as Currency Type with a value of $2.50 then the lava below does not work as expected.{% assign unitPrice = 'Global' | Attribute:'UnitPrice' %}Total Price = {{ unitPrice | Times: 2 }}Actual Result:Total Price = $2.50 $2.50Expected Result:Total Price = $5.0If I apply | AsDecimal filter first then the result is just blank.Any ideas on how to fix this ?