Murali Bala
Murali Bala

Reputation: 81

how to convert string field to decimal value in c# crystal report

I have a string field that contains some percentage(like 5).now i convert that string field to decimal value than calculate total amount.so how can i convert string field to decimal value in crystal report formula field.

Upvotes: 0

Views: 1720

Answers (1)

David
David

Reputation: 16277

Try Decimal.TryParse method.

Decimal.TryParse

See reference here.

Upvotes: 1

Related Questions