Page 2 of 2
Re: EXPORTING TO EXCEL FROM ANDROID
Posted: August 12th, 2024, 8:22 am
by John Manasseh
Hello,
I would like support to export all cases to CSV and be able to sync the CSV file to the server.
Thanks
Re: EXPORTING TO EXCEL FROM ANDROID
Posted: August 12th, 2024, 9:57 am
by justinlakier
Hello,
You can easily sync the CSV file to the server with
SyncFile.
The export solution that Josh mentions, using
FileWrite, writes a case to the CSV line by line. You could do this using loops to go over each case from a menu. This code may be slow if you are trying to write all of the details from many files.
It is recommended that instead of trying to perform the file conversion on Android, you access the .csdb data from your desktop and use the
Export tools found there to convert the .csdb into a CSV.
Hope this helps,
Justin