Hello, I noticed a call to org-sbe failed because there were some extra spaces present in one argument. I tried to clean them up before calling the code block, but instead I'm getting literally what I'm writing. Here is an example:
--8<---------------cut here---------------start------------->8--- #+name: spending #+begin_src sh :var c="bar" :results output echo "res:$c:" #+end_src | Name | Test1 | Test2 | |------+-------------+------------------------------| | Food | res: Food : | res: (org-babel-trim Food) : | #+TBLFM: $2='(org-sbe spending (c (concat "\"" $1 "\"")))::$3='(org-sbe spending (c (concat "\"" (org-babel-trim $1) "\""))) --8<---------------cut here---------------end--------------->8--- The Test1 column shows the extra space, and the Test2 column my attempt to clean things up. I suppose this behavior is due to the fact that org-sbe is a macro, but I don't know how tell it to evaluate its arguments and not pass them literally. Any suggestion on how to proceed? Thanks, Alan