Try
(setq org-refile-targets `((nil :maxlevel . 9)
(org-agenda-files :maxlevel . 9)
(,(concat org-directory
"/projects/project.org") :maxlevel . 9)))Notice the ` instead of ' and the ,. This feature is called 'quasiquote'. On Thu, Jul 19, 2012 at 10:20 AM, Varun Vats <[email protected]> wrote: > (setq org-refile-targets '((nil :maxlevel . 9) > (org-agenda-files :maxlevel . 9) > (concat org-directory "/projects/project.org" > :maxlevel . 9)))
