คุณสามารถใช้บล็อกโค้ดแบบอินไลน์บาเบล
และฟังก์ชั่นเสียงกระเพื่อมorg-table-get-remote-rangeสำหรับการเข้าถึงช่วงของตารางเช่นในตัวอย่างต่อไปนี้ (หมายเลข 3 หลังจากบล็อกซอร์สคือสิ่งที่สร้างขึ้นเมื่อดำเนินการ Cc Cc มัน)
#+TBLNAME: table1
| Name | Points |
|---------+--------|
| Andreas | 5 |
| Barbara | 8 |
| Carl | 7 |
|---------+--------|
| Total | 20 |
#+TBLFM: @5$2=vsum(@I..@II)
Now I insert in the text the number of names in the above table:
src_emacs-lisp[:results raw]{(length (org-table-get-remote-range "table1" "@I$1..@II$1" ))} 3