From: Uwe Brauer <oub@mat.ucm.es>
To: emacs-orgmode@gnu.org
Cc: help-gnu-emacs@gnu.org
Subject: Re: Microsoft Excel spreadsheet editing directly from within emacs.
Date: Mon, 28 Dec 2020 21:12:54 +0100 [thread overview]
Message-ID: <87pn2t1ygp.fsf@mat.ucm.es> (raw)
In-Reply-To: CAGP6POJ06GJs7AK6Y3quxAJDGPpWbmvio8tvBheN_ETywadR1A@mail.gmail.com
[-- Attachment #1: Type: text/plain, Size: 957 bytes --]
>>> "HZ" == Hongyi Zhao <hongyi.zhao@gmail.com> 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
[-- Attachment #2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 5673 bytes --]
next prev parent reply other threads:[~2020-12-28 20:13 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-28 15:18 Microsoft Excel spreadsheet editing directly from within emacs Hongyi Zhao
2020-12-28 16:21 ` Daniel Martín
2020-12-28 16:51 ` Stefan Monnier
2020-12-28 17:39 ` Filipp Gunbin
2020-12-28 19:47 ` Jean Louis
2020-12-28 21:06 ` Uwe Brauer
2020-12-29 7:32 ` Jean Louis
2020-12-29 15:36 ` Uwe Brauer
2020-12-28 19:36 ` Jean Louis
2020-12-28 19:55 ` Daniele Nicolodi
2020-12-28 20:37 ` Jean Louis
2020-12-29 11:51 ` Stefan Nobis
2020-12-29 13:41 ` Eric S Fraga
2020-12-30 22:19 ` Jean Louis
2020-12-31 12:17 ` Stefan Nobis
2021-01-02 0:48 ` Samuel Wales
2020-12-29 0:06 ` andres.ramirez
2020-12-29 2:29 ` Carson Chittom
2020-12-28 20:12 ` Uwe Brauer [this message]
2020-12-29 10:07 ` Eric S Fraga
2020-12-29 4:02 ` Robert Thorpe
2020-12-29 4:53 ` Hongyi Zhao
2020-12-29 7:49 ` Jean Louis
2020-12-29 14:47 ` Hongyi Zhao
2020-12-29 14:59 ` Greg Minshall
2020-12-29 15:34 ` Jean Louis
2020-12-29 17:54 ` Robert Thorpe
2020-12-29 23:39 ` Hongyi Zhao
2020-12-30 3:06 ` Robert Thorpe
2021-01-08 14:07 ` H. Dieter Wilhelm
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87pn2t1ygp.fsf@mat.ucm.es \
--to=oub@mat.ucm.es \
--cc=emacs-orgmode@gnu.org \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).