Hello,
how is it possible to convert a String Output to a Integer?
Example:
{Left(StringValue,IIF(StringValue.IndexOf("xxx")==29,33,3))}
I need to convert the IIF Output from a String to a Integertyp, how does this work?
Best regards
Convert String to Integer
Re: Convert String to Integer
Hello,
Please try to use the following expression:
Thank you.
Please try to use the following expression:
Code: Select all
{Left(StringValue,(StringValue.IndexOf("xxx")==29?33:3))}
Re: Convert String to Integer
Hello,
it works
Thank you very much!
it works
Thank you very much!
Re: Convert String to Integer
Hello
We are always glad to help you!
Please let us know if you need any additional help.
Thank you.
We are always glad to help you!
Please let us know if you need any additional help.
Thank you.