Hi Alan, Alan Schmitt <alan.schm...@polytechnique.org> writes:
> #+TBLFM: $2='(org-sbe spending (c (concat "\"" $1 "\"")))::$3='(org-sbe > spending (c (concat "\"" (org-babel-trim $1) "\""))) You need to swap "concat" and "org-babel-trim" like this: > #+TBLFM: $2='(org-sbe spending (c (concat "\"" $1 "\"")))::$3='(org-sbe > spending (c (org-babel-trim (concat "\"" $1 "\"")))) Otherwise `org-babel-trim' act upon something that is not a string. Btw, org-trim is enough here. HTH, -- Bastien