In excel automation there needs to be operations performed on multiple columns . But i need to remove the values in the columns that are extracted from webpage in terms of currency like £€$ etc
How to achieve this??
Use For each excel row activity
row("ColumnName") = System.Text.RegularExpressions.Regex.Replace(row("ColumnName").ToString(), "[£€$]", "")
Hi @Chandra_Sekhar_K ,
U have the options in extract datatable where u can write only numbers .
Can u explain in detail
Not in excel i want do while extraction
Lets take this example of datatables.net website
use below options to achieve what u are looking for
Regards
Sandy
Column settings will help to remove the text value and keep only numbers rt?
Yes thats right it can be appilied on any column of ur choice based on ur requirement ,
which will help to remove currency symbols in extracted table
this approach will help u not to modify in the excel rather u can have therequired data u are lookng for
Hie @Chandra_Sekhar_K i"m attaching sample workflow hope it will reslove your query first store your input as datatable as an example → dt1 use for each row inside that assign a string variable and pass the regex pattern which check and replace that sign …
Cheers Happy Automation
your input as datatable
your output flow
here the regex pattern to check and remove the sign
if this reslove your query mark this as solution …
I am trying to get modification of data while extraction not after extraction
ok @Chandra_Sekhar_K while Using Table extraction after selecting salary filed do one thing change format
click on that icon
this screen will appear
change parse data as : format from text to Number so it will remove the dollar sign before writing it to the excel file
hope you understand
mark this solution if you find it was helpful
cheers Happy Automation

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.