I want to create an agenda view which lets me list all items, I've been working on in a certain time interval in chronological order.
 
I have created an agenda which does that by listing all headings with inactice timestamps like that:
 
("ip" "past 7d +3d" agenda "" ((org-agenda-overriding-header "Activities during last 7 days") (org-agenda-start-day "-7d") (org-agenda-span 10) (org-agenda-repeating-timestamp-show-all nil) (org-agenda-include-inactive-timestamps t) (org-agenda-entry-types (quote (:deadline :timestamp :sexp)))))
 
My problem is: it only lists items with an inactive timestamp, but not those which have been clocked in the observed time.
Sure, in the same agenda I can type "v c" and then show the clocking history but it seems I can not have both at the same time.
 
Is there a way to expand the above described agenda so that it also displays headings which have been clocked  in/out during the agenda span?
In theory, those timestamps already exist in the LOGBOOK drawer, but they seem to be ignored by the "org-agenda-include-inactive-timestamps" option).
 
Kind regards
 
Martin