David Han
David Han

Reputation: 47

Shopify - Order File CSV to text file

Is there a way to convert order csv file to text file? i'm guessing this may need to be converted using API but open to suggestions

or if there are any marketplace apps in shopify that can conver them?

Upvotes: 0

Views: 140

Answers (2)

Vixter
Vixter

Reputation: 1

You can convert an Excel worksheet to a text file by using the Save As command.

  • Go to File > Save As.
  • Click Browse.

In the Save As dialog box, under Save as type box, choose the text file format for the worksheet; for example, click Text (Tab delimited) or CSV (Comma delimited).

Export data to a text file by saving it

Upvotes: 0

David Lazar
David Lazar

Reputation: 11427

Believe it or not, CSV is actually a text file. Always has been, always will be. The things people screw up when working with CSV include this fun list:

  • line endings can be windows, mac, or other
  • some people use characters other than a comma to separate fields
  • some people quote data, others do not
  • some people forget headers

But all in all, Shopify CSV is nothing but a text file. So I think your question is answered fine. If on the other hand you meant something else, please do let us know!

Upvotes: 1

Related Questions