The documentation on how to import invoices from CSV is here:
Once you know which columns are which in the Amazon/eBay download then what you’d basically have to do is
- Open the downloaded CSV in excel/google sheets/etc
- Add a second sheet to the workbook
- Put the right column headers for QuickFile into row 1 (see the article above)
- In row 2 put fixed values for things like the client name (“Amazon sales”), the last day of the month for the issue and payment dates, and then for the gross and VAT amount columns put
=SUM(Sheet1!C2:C1048576)
for the appropriate columns from the downloaded sheet. - Save this second sheet as CSV and upload it into QuickFile
Once you’ve worked out the columns once you should be able to save a template with a blank sheet for the Amazon CSV and with the QuickFile sheet pre populated, then all you need to do each month is copy the template workbook, import that month’s CSV into the blank sheet, then export and upload the other sheet.
You can get more creative with your formulas to automatically calculate things like the date (latest transaction date from the Amazon sheet) and description (e.g. ="Sales for " & YEAR(A2) & "-" & MONTH(A2)
)