Search code examples
amazon-quicksight

Multiple replaces on a column in an AWS Quicksight dataset


I'm very new to AWS Quicksight and I'm trying to do multiple replaces on a column in a dataset. I thought that something like this calculated field would work:

replace(replace({Registered Owner}, 'LIMITED', 'Ltd'),{Registered Owner},'kft', 'Ltd')

But it doesn't look like you can nest Replace statements.

Any one can assist on how i might achieve this?

Regards, Mark


Solution

  • Here is an example of using nested replace -

    replace(replace(replace({Email}, '@','ATTHERATE'),'.com','.org'),'email','quicksight')
    

    Will result into following -

    enter image description here