error while converting text to integer/float

I have a column that is a text column has values in %, $ and -ve values as well. I tried replacing the % ,',' and '$' to have only numeric values to convert it into a float or integer column. However I am getting the below error. What can I do to convert the numbers into numeric column so that I can apply calculations to the column further.

Failed to convert value '(155137)' from type 'String' to type 'Integer'.

Tagged:

Best Answer

  • GrantSmith
    GrantSmith Coach
    Answer ✓

    You can feed it into a regular expression in a formula tile to convert () to a negative number with something like this:

    REGEXP_REPLACE(`field`, '\(\d+\)', '-$1')
    

    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**

Answers

  • GrantSmith
    GrantSmith Coach
    Answer ✓

    You can feed it into a regular expression in a formula tile to convert () to a negative number with something like this:

    REGEXP_REPLACE(`field`, '\(\d+\)', '-$1')
    

    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**
  • Manasi_Panov
    Manasi_Panov Contributor

    Hello @Arthi Annadi,

    Could you show us the exact format of your numbers, including the placement of % or $ (e.g., before or after)?

    If you found this post helpful, please use 💡/💖/👍/😊 below! If it solved your problem, don't forget to accept the answer.

  • art_in_sky
    art_in_sky Contributor

    @Manasi_Panov @GrantSmith This has been fixed, I used replace text, string operations and regex formula, cast and it worked. Thank you all for your help.