hello
in my report i have a database field in the form of e.g "0.5 STD","4.5 STD", "1,5 STD" etc
how to do i convert this string into the decimal without the " STD"?
thank you in advance
String to decimal
String to decimal
Hello,
Please try to use the following expression, for example:
Thank you.
Please try to use the following expression, for example:
Code: Select all
{decimal.Parse(yourField.Substring(0, yourField.Length - 4))}
String to decimal
hi,
worked perfectly
thank you very much
worked perfectly
thank you very much
String to decimal
Great!
Have a nice day!
Thank you.
Have a nice day!
Thank you.