@roniercassio
Follow the below approach:
My CSV file looks like this

My flow screenshot:

Tip: Write current item value as text and replace with empty string like below:


Output:

Code:
File.ReadFromCSVFile.ReadCSV CSVFile: $'''C:\\Boot\\CSVTable.csv''' Encoding: File.CSVEncoding.UTF8 TrimFields: True FirstLineContainsColumnNames: True ColumnsSeparator: File.CSVColumnsSeparator.SystemDefault CSVTable=> CSVTable
Excel.LaunchExcel.LaunchUnderExistingProcess Visible: True Instance=> ExcelInstance
Excel.WriteToExcel.WriteCell Instance: ExcelInstance Value: CSVTable.ColumnHeadersRow Column: $'''A''' Row: 1
LOOP FOREACH CurrentItem IN CSVTable
Excel.GetFirstFreeRowOnColumn Instance: ExcelInstance Column: $'''A''' FirstFreeRowOnColumn=> FirstFreeRowOnColumn
Excel.WriteToExcel.WriteCell Instance: ExcelInstance Value: $'''\'%CurrentItem['DataEntrega']%\'''' Column: $'''A''' Row: FirstFreeRowOnColumn
END
Excel.FindAndReplace.FindAndReplaceAll Instance: ExcelInstance TextToFind: $'''\'''' TextToReplaceWith: $'''%''%''' MatchCase: False MatchEntireCellContents: False SearchBy: Excel.SearchOrder.Rows Cells=> Cells
Excel.SaveExcel.SaveAs Instance: ExcelInstance DocumentFormat: Excel.ExcelFormat.OpenXmlWorkbook DocumentPath: $'''C:\\Boot\\ConvertedCSVExcel'''
Excel.CloseExcel.Close Instance: ExcelInstance
How to copy/paste the above code into your power automate desktop?

Thanks,
Deenuji Loganathan 👩💻
Automation Evangelist 🤖
Follow me on LinkedIn 👥
-------------------------------------------------------------------------------------------------------------
If I've helped solve your query, kindly mark my response as the solution ✔ and give it a thumbs up!👍 Your feedback supports future seekers 🚀