Reputation: 153
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
Upvotes: 0
Views: 1358
Reputation: 2746
Here is an example of using nested replace -
replace(replace(replace({Email}, '@','ATTHERATE'),'.com','.org'),'email','quicksight')
Will result into following -
Upvotes: 1