Load/Save your data to its native format. This will save both the Contacts and Calendar in one file.
You can export all contacts to a file containing vCards
You can a single vCard
You can export your entire calendar in vCalendar format (.ics format)
You can export a single event in vCalendar format (.ics format)
Most programs like Google Calendar or Microsoft Outlook can import or export these files.
Notes on importing:
The program only supports a limited number of fields. When importing from a
different program, any fields not supported will be read into the "Notes" area on Contacts and the
"Description" area on Calendar entries. Also, photos, audio, and video are not supported.
Notes
Write
Tables
Column: header name here
Row: row number here
Tables-Help
FORMATTING RULES:
When Saving:
All cells are quoted text.
Interior double quotes in cells are converted like this: "->""
If loading CSV from other apps:
Cells should all be text type.
Quote all text strings when saving is best practice.
There should be no spaces or tabs between the comma delimiter.
Interior double quotation marks (i.e. ") in a cell should be stored as ""
For example, these 2 cell contents:
She said "Yeah, Yeah, Yeah",Hi
Would be stored as
"She said ""Yeah, Yeah, Yeah""","Hi"
Notes on CSV:
There is no universal standard among programs, but this program uses the following standards
adapted from RFC 4180 and MIME standards.:
Each record should contain the same number of comma-separated fields.
Any field may be quoted (with double quotes).
If double-quotes are used to enclose fields, then a double-quote in a field must be represented by two double-quote characters. (internal " is escaped with "")
Some type of carriage return/line feed must be used- this program uses the "\n" convention, not "\r\n".