Hello all, I need to remove these two zeros after * , * along with Euro sign. Tried with split, didn’t make it.
Hi
Try like this inside the FOR EACH ROW activity
row(“yourcolumnname”) = “‘“ + Split(row(“yourcolumnname”).ToStting,”,”)(0).ToString
Where if we concatenated with a single quote before the format will be of type text
Cheers @bp777
why don’t you just try replace function.
Replace(",00 E","")
Check the below post -
Regards,
Karthik Byggari
I’ve tried this method, but what is weird, after this method : Replace(“,00 E”,“”) - expected behavior is to get 4.800, but I’m getting 4.8
Because you need to change the format of the column. (change to Text)
In excel it takes likes this… When you enter manually also it changes
did we try with this method buddy
Cheers @bp777
I’ve tried both methods, and both of them works! Thank you all!
@Palaniyappan @KarthikByggari
awesome
Cheers @bp777
Hi @bp777,
This package contains the activity called Find and Replace . You can use this activity instead moving the data to datatable.
Regards
Balamurugan.S