To Remove unwanted character in xlsx

Hi @NISHITHA ,

In the process of converting from CSV to Excel, do you have datatable as the intermittent value, if so we could maybe try converting using the Linq Expression mentioned in the post below :

For your case :

dtCorrected = (From r In dtData.AsEnumerable
let ra = r.ItemArray.Select(Function (x) x.ToString.Trim.Replace("""","").Replace("=","")).toArray()
Select dtCorrected.Rows.Add(ra)).CopyToDataTable()

Another Option would be to use Modern Excel Replace Activity which will effect the Excel sheet directly :
image
image