>>> "HZ" == Hongyi Zhao writes: > Is it possible for me to edit Microsoft Excel spreadsheet directly > from within emacs, especially utilizing the powerful capabilities of > orgmode? You can export and import them to org files, without the excel formula of course (defun org-table-import-xlsx-to-csv-org () (interactive) (let* ((source-file (file-name-sans-extension (buffer-file-name (current-buffer)))) (xlsx-file (concat source-file ".xlsx")) (csv-file (concat source-file ".csv"))) (org-odt-convert xlsx-file "csv") (org-table-import csv-file nil))) (defun org-table-export-to-xlsx () (interactive) (let* ((source-file (file-name-sans-extension (buffer-file-name (current-buffer)))) (csv-file (concat source-file ".csv"))) (save-excursion (org-table-export csv-file "orgtbl-to-csv") (org-odt-convert csv-file "xlsx")))) > Regards