How are bundled products displayed in the Shopify sales report?


Bundle orders are broken down into individual products for fulfillment, allowing you to have detailed sales data at the product level. Bundly also includes built-in statistics that show bundle sales, last sale dates, and aggregate metrics, such as AOV and revenue increases attributed to bundles.


How can I filter a report based on the Bundles?

You can also access detailed information fetched by Shopify by going into Analytics > Reports and creating a new report by clicking the upper-right corner button labeled "New exploration".

Specifically, you can create a report that groups your sales by both Bundle Title and Product Title.

You can access this report using a link like this (make sure to replace "yourstore" with your domain):


https://admin.shopify.com/store/yourstore/analytics/reports/gross_sales_by_order?ql=FROM+sales%0A++SHOW+total_sales%0A++GROUP+BY+bundle_title%2C+product_title+WITH+GROUP_TOTALS%2C+TOTALS%0A++SINCE+startOfYear%280y%29+UNTIL+today%0A++ORDER+BY+total_sales__bundle_title_totals+DESC%2C+total_sales+DESC%2C+bundle_title%0A++++ASC%2C+product_title+ASC%0AVISUALIZE+total_sales+TYPE+table


And the query will look something like this:

Additionally, you can tweak the query a bit to get different data, like so:


To get sales from the start of the year until today:

FROM sales 
SHOW total_sales 
GROUP BY bundle_title 
WITH TOTALS 
SINCE startOfYear(0y)  
UNTIL today 
VISUALIZE total_sales TYPE table

To get sales from the start of the month until today:

FROM sales 
SHOW total_sales 
GROUP BY bundle_title 
WITH TOTALS 
SINCE startOfMonth(0m)  
UNTIL today 
VISUALIZE total_sales TYPE table

Here’s what that looks like in the Shopify Analytics section:

This should give you a clear breakdown of how individual products are performing within each bundle.


Need a hand or want a second opinion? Just let us know at support@bundly.app — we are always here to help!

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us