Hello I want a simple function which allows me to insert a new row before I wrap a region. (Because otherwise rows which already contain information get disordered.) Like (defun my-org-wrap-cell () (interactive) (save-excursion (progn (org-table-insert-row 1) (org-table-wrap-region nil)))) However the save excursion does not work: the cursor even jumps outside the table. Example