Hello everyone,
I'm learning a bit about tables in orgmode. How do I set a value for a
column, where the values are choosen from a custom sequence I define?
How to cycle these values?
If I understand correctly I can create my own sequence with (example):
--8<---------------cut here---------------start------------->8---
#+PROPERTY: INVOICE_STATUS "TO_BE_SENT SENT TO_BE_PAID PAID"
| Invoice Date | Invoice # | Amount | Status |
|------------------+-----------+--------+------------|
| [2025-03-02 Sun] | CL161 | 10 | TO_BE_SENT |
--8<---------------cut here---------------end--------------->8---
Is there a way to edit a cell cycling these values? A bit like I can cycle values in
`org-todo-keywords` with S-left/S-right
Thanks!