How do I perform multiplication on two numbers?

Hi all,

I am trying to Multiply the value in ‘Rental’ with ‘Ratio’ to get me a new value. How could I perform mathematical operations within this assign activity?

Thanks

Hi @SRoyi

How about the following?

(CDec(CurrentRow.Item("Rental")) * CDec(CurrentRow.Item("Ratio"))).ToString()
1 Like

Hi there,

It worked just like how I wanted, Thanks a lot!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.