How to add amount (as decimal) into Queue?

I try to add amount as decimal in Queue, but the result in Queue doesn’t show as decimal but negative value “amount: -199660985”.

Hi @BenSee

You got to convert the value to decimal when passing it. Use the below code to get it converted to decimal.

Decimal.Parse(Row("Amount").ToString)

Let know whether it works

5 Likes

Thank you. It work.

2 Likes

@BenSee Glad to hear that it worked for you…

If my answer helped you to fix it, please also make sure to mark it as the solution too!! :slight_smile:

Thank you!!

Happy automating!!

1 Like

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