Here's a FREE report! Put it into your CustomReport section.
Code:
select
c.CustomerID,
c.email,
productid,
variantid,
productsku,
quantity,
productprice,
(quantity * productprice) as [Value],
sc.createdon,
c.firstname,
c.lastname
from shoppingcart as sc (nolock)
join customer as c (nolock) on c.customerid=sc.customerid
join address as a (nolock) on c.billingaddressid=a.addressid
where isregistered=1
order by c.customerid desc, sc.createdon
Importantly this reports only the registered customers, as opposed to abandoned baskets of window-shoppers.