csvからExcelに変換したい

csvのファイルをExcelに変換したいので、csvファイルを開いて、ファイル⇒エクスポート⇒ファイルの種類の変更と順番にクリックしたいのですが、ファイルはクリックできますが、その次のエクスポート以降クリックできなくて困っています。
エクスポートがクリックできてもファイルの種類の変更がクリックできなかったりで、前に進みません。
なぜクリックできないのでしょうか?

Hi @marita

That’s not the good practice to export csv to excel by opening the csv file and doing Ui Actions.

Instead of that, check the below steps,
→ Drag and drop the Read CSV activity and give the path of the CSV file name. Create output variable in the Read CSV activity that was Datatable datatype.
→ after read CSV activity insert the Write range workbook activity and give the path of the workbook where you want to save with xlsx extension as below,

""E:\Spreadsheets Folder\Excel.xlsx"

→ Give the Variable which is created in Read CSV activity to write range workbook activity.

Then the bot will read the CSV file using Read CSV activity and write all the data in Excel file by using Write range workbook.

Hope it helps!!

こんにちは

おそらくエクセルファイルを使用アクティビティで直接CSVファイルを開いて、名前を付けてエクセルファイルを保存アクティビティで保存したほうが簡単と思います。以下サンプルです。

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