{"id":24779,"date":"2023-11-22T10:51:13","date_gmt":"2023-11-22T10:51:13","guid":{"rendered":"https:\/\/ithemelandco.com\/?p=24779"},"modified":"2026-03-09T11:11:19","modified_gmt":"2026-03-09T11:11:19","slug":"woocommerce-sales-by-country-report","status":"publish","type":"post","link":"https:\/\/ithemelandco.com\/blog\/woocommerce-sales-by-country-report\/","title":{"rendered":"How to Get WooCommerce Sales by Country Report (2 Easy Methods)"},"content":{"rendered":"\n<p>For online stores that sell products internationally, understanding where customers come from is essential for making better business decisions. A <strong>WooCommerce sales by country report<\/strong> helps store owners analyze their revenue across different countries and identify which markets generate the most orders.<\/p>\n\n\n\n<p>By reviewing sales data by country, store managers can discover valuable insights such as which countries have the highest demand, where marketing campaigns perform better, and which regions may require improved shipping or pricing strategies. These insights are especially important for businesses planning to expand their international presence.<\/p>\n\n\n\n<p>WooCommerce stores collect geographic information such as the customer&#8217;s billing country whenever an order is placed. This data can be used to generate a <strong>sales by country report<\/strong> that shows how many orders were placed from each country and how much revenue was generated.<\/p>\n\n\n\n<p>There are multiple ways to generate this report. Some store managers prefer using <strong>WooCommerce MySQL queries<\/strong> to retrieve raw data directly from the database, while others use reporting plugins that provide ready-to-use dashboards and advanced filters.In this guide, we will show you <strong>two practical methods to generate a WooCommerce sales by country report<\/strong>. The first method uses a SQL query to retrieve the report directly from the WooCommerce database. The second method uses REPORTiT as a WooCommerce reporting plugin that allows you to generate advanced country-based reports quickly and easily.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is sales by country report?<\/h2>\n\n\n\n<p>The sales by country report includes a list of all countries that customers ordered from there with useful information like number of orders, total orders, quantity of sold products, etc. This report allows the store owners to see the overall sales performance of their stores for each country.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Use SQL code to get sales by country report in WooCommerce<\/h2>\n\n\n\n<p>Running SQL queries is one of the best methods for generating different types of reports in WooCommerce. To run a query, you need to use a database management system like PhpMyAdmin and log into your WordPress database by using the username and password set for it.<\/p>\n\n\n\n<p>We recommend you use this method only if you are an expert in code writing and you have already worked with WordPress database management systems.<\/p>\n\n\n\n<p>It is also important to get a backup from your site before running the query to use it in case of any problem.<\/p>\n\n\n\n<p>By having the above-mentioned consideration in mind, you can insert the below query in the MYSQL tab to get sales by country report in WooCommerce:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SELECT SUM(it_postmeta1.meta_value) AS 'total_amount' ,it_postmeta2.meta_value AS 'billing_country' ,Count(*) AS 'order_count' \n\nFROM wp_posts as it_posts LEFT JOIN wp_postmeta as it_postmeta1 ON it_postmeta1.post_id=it_posts.ID LEFT JOIN wp_postmeta as it_postmeta2 ON it_postmeta2.post_id=it_posts.ID \n\nWHERE it_posts.post_type = 'shop_order' AND it_postmeta1.meta_key = '_order_total' AND it_postmeta2.meta_key = '_billing_country' it_posts.post_status IN ('wc-completed') \n\nGROUP BY it_postmeta2.meta_value Order By total_amount DESC<\/code><\/pre>\n\n\n\n<p>By running this query, you can receive a report with the most important columns required for sales by country report, including:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Total amount<\/strong>: Total amount of orders spent in the country.<\/li>\n\n\n\n<li><strong>Billing country<\/strong>: The billing country of orders.<\/li>\n\n\n\n<li><strong>Order count<\/strong>: Number of orders placed in the country.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/SQL-code-to-get-sales-by-country-report.png\"><img fetchpriority=\"high\" decoding=\"async\" width=\"588\" height=\"291\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/SQL-code-to-get-sales-by-country-report.png\" alt=\"SQL code to get sales by country report in WooCommerce\" class=\"wp-image-24782\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/SQL-code-to-get-sales-by-country-report.png 588w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/SQL-code-to-get-sales-by-country-report-500x247.png 500w\" sizes=\"(max-width: 588px) 100vw, 588px\" \/><\/a><figcaption class=\"wp-element-caption\">Result of sql query<\/figcaption><\/figure>\n\n\n\n<p>Although using SQL code is useful for store managers who need specific information about their sales, generating reports with a lot of details is really complicated. So, if you have a big ecommerce store and you need to analyze different types of sales by country report, your ultimate solution is using the WooCommerce report plugin.<\/p>\n\n\n\n<p>Let\u2019s see how this plugin can help you to generate customized reports quickly and easily.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Use the WooCommerce report plugin to get sales by country report in WooCommerce<\/h2>\n\n\n\n<p><span style=\"text-decoration: underline\"><a href=\"https:\/\/ithemelandco.com\/plugins\/woocommerce-report\/?utm_source=blog&amp;utm_content=country-sale-report\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce report plugin<\/a><\/span> is one of the best WooCommerce reporting tools you can generate more than 50 types of sales reports with one click or download them as CSV, XLS, or PDF files.<\/p>\n\n\n\n<p>In the following, we review the various methods of getting sales by country reports in the WooCommerce report plugin:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Install and activate the plugin<\/h3>\n\n\n\n<p>The first step for generating a country sales report in the WooCommerce report plugin is to <span style=\"text-decoration: underline\"><a href=\"https:\/\/ithemelandco.com\/docs\/woocommerce-report\/install-plugin\/\" target=\"_blank\" rel=\"noreferrer noopener\">download and install it<\/a><\/span> on your WordPress website. By activating the plugin, you can see the <strong>IT Woo Report<\/strong> option in the WordPress dashboard. You need to click on it to see the main page of the plugin.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/select-woo-report-section.png\"><img decoding=\"async\" width=\"176\" height=\"716\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/select-woo-report-section.png\" alt=\"select Woo Report section in Dashboard menu\" class=\"wp-image-24784\"\/><\/a><figcaption class=\"wp-element-caption\">Open REPORTiT plugin<\/figcaption><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Get WooCommerce sales by country report<\/h3>\n\n\n\n<p>On the main page of the WooCommerce report plugin, all available reports are listed in the left panel, and to make finding your required report easier, they are divided into some categories like orders, products, etc.<\/p>\n\n\n\n<p>Now, let\u2019s see which one can help you to get sales by country report.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Get WooCommerce order sales by country report&nbsp;<\/h3>\n\n\n\n<p>The most common sales by country report is get report based on all orders placed in each country. By generating this report, store managers can compare the total sales of their online store in each country to get deep insight into their business performance.<\/p>\n\n\n\n<p>To generate this report in our plugin, you need to:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Go to <strong>Order &gt; Order \/ Country<\/strong> report.<\/li>\n\n\n\n<li>Open the filter form by pressing the <strong>Search<\/strong> icon.<\/li>\n\n\n\n<li>Set a date range in the form.<\/li>\n\n\n\n<li>Press the <strong>Search<\/strong> button to get the sales by country report.&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>As illustrated below, this report is a list of all countries that your online store received orders in, along with the below columns:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Number of items sold<\/strong>: The total quantity of products ordered by customers in each country.&nbsp;<\/li>\n\n\n\n<li><strong>Net sale<\/strong>: Total amount of orders placed in each country.&nbsp;<\/li>\n\n\n\n<li><strong>Coupon<\/strong>: Total amount of discounts in each country.&nbsp;<\/li>\n\n\n\n<li><strong>Shipping<\/strong>: Total amount of shipping in each country.&nbsp;<\/li>\n\n\n\n<li><strong>Refunds<\/strong>: Total amount of refunded orders in each country.<\/li>\n\n\n\n<li><strong>Final sale amount<\/strong>: The final sale amount is calculated automatically by the sum of Net sale and shipping and discount amounts.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Get-order-sales-by-country-report.png\"><img decoding=\"async\" width=\"1919\" height=\"844\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Get-order-sales-by-country-report.png\" alt=\"Get WooCommerce order sales by country report\u00a0\" class=\"wp-image-24785\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Get-order-sales-by-country-report.png 1919w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Get-order-sales-by-country-report-500x220.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Get-order-sales-by-country-report-1536x676.png 1536w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Get-order-sales-by-country-report-1000x440.png 1000w\" sizes=\"(max-width: 1919px) 100vw, 1919px\" \/><\/a><figcaption class=\"wp-element-caption\">Order sales by country report<\/figcaption><\/figure>\n\n\n\n<p>There is also a summary report at the bottom of the table that gives you brief information about the total number of sold items, total net sale amount, total shipping, discount, and refund amounts, as well as the total final sale amount.<\/p>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center main-cta-cnt has-background is-layout-flex wp-container-core-columns-is-layout-4a33225c wp-block-columns-is-layout-flex\" style=\"background-color:#3d67ff;padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-core-group-is-layout-4f39da6d wp-block-group-is-layout-constrained\" style=\"padding-top:15px\">\n<p class=\"single-cta-heading has-white-color has-text-color has-link-color wp-elements-0991dc6851cfc99e0f24c91f59e458e6\" style=\"font-size:26px;font-style:normal;font-weight:800\">REPORTiT &#8211; Advanced WooCommerce Reporting<\/p>\n\n\n\n<p class=\"single-cta-desc has-white-color has-text-color has-link-color wp-elements-1a28bbf9f87214ec0a50c208a617a7bc\" style=\"font-size:16px\">The easy way to get sales by country report in WooCommerce<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button main-cta-button\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" href=\"https:\/\/ithemelandco.com\/plugins\/woocommerce-report\/?utm_source=blog&amp;utm_content=country-sale-report\" style=\"border-style:none;border-width:0px;border-radius:40px;color:#ffffff;background-color:#0fba5e;padding-top:10px;padding-right:30px;padding-bottom:10px;padding-left:30px;font-style:normal;font-weight:500\" target=\"_blank\" rel=\"noreferrer noopener\">Buy Plugin<\/a><\/div>\n\n\n\n<div class=\"wp-block-button is-style-outline is-style-outline--1\"><a class=\"wp-block-button__link has-white-background-color has-text-color has-background wp-element-button\" href=\"https:\/\/wordpress.org\/plugins\/ithemelandco-woo-report\/\" style=\"border-style:none;border-width:0px;border-radius:40px;color:#3d67ff;padding-top:10px;padding-right:30px;padding-bottom:10px;padding-left:30px;font-style:normal;font-weight:500\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Free Version<\/a><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"532\" height=\"355\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/reportit-banner.png\" alt=\"REPORTiT - Advanced WooCommerce Reporting plugin by ithemeland\" class=\"wp-image-48725\" style=\"width:440px;height:auto\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/reportit-banner.png 532w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/reportit-banner-500x335.png 500w\" sizes=\"(max-width: 532px) 100vw, 532px\" \/><\/figure>\n<\/div>\n<\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Get WooCommerce product sales by country report<\/h3>\n\n\n\n<p>One of the most information about online shops that store managers need to analyze is the popularity of products in each country. They need this information to supply the demands of their customers in the destination market.<\/p>\n\n\n\n<p>To get product sales by country report in the WooCommerce report plugin, you can easily go to the <strong>Cross tab<\/strong> option and choose <strong>Product\/Country<\/strong> report.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Get-product-sales-by-country-report.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1919\" height=\"878\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Get-product-sales-by-country-report.png\" alt=\"Get WooCommerce product sales by country report\" class=\"wp-image-24786\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Get-product-sales-by-country-report.png 1919w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Get-product-sales-by-country-report-500x229.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Get-product-sales-by-country-report-1536x703.png 1536w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Get-product-sales-by-country-report-1000x458.png 1000w\" sizes=\"(max-width: 1919px) 100vw, 1919px\" \/><\/a><figcaption class=\"wp-element-caption\">Product sale by country report<\/figcaption><\/figure>\n\n\n\n<p>If you want to see all the information about this report, set a date range in the <strong>Filter Form<\/strong> and press the <strong>Search <\/strong>button to see a list of products in the table with their total sales amount in each country reported in separate columns of the table.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/result-product-sales-by-country-report-1024x489.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1580\" height=\"489\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/result-product-sales-by-country-report.png\" alt=\"result product sales by country report in WooCommerce table\" class=\"wp-image-24787\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/result-product-sales-by-country-report.png 1580w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/result-product-sales-by-country-report-500x155.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/result-product-sales-by-country-report-1536x475.png 1536w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/result-product-sales-by-country-report-1000x309.png 1000w\" sizes=\"(max-width: 1580px) 100vw, 1580px\" \/><\/a><figcaption class=\"wp-element-caption\">Result of products per country report<\/figcaption><\/figure>\n\n\n\n<p>However, if you need a customized report, it is possible to filter the report based on the below options available in the filter form:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Category<\/strong>: To observe the sales of specific categories in different countries&nbsp;<\/li>\n\n\n\n<li><strong>Status<\/strong>: To see the total product sales report in each country based on specific order status like processing or completed.<\/li>\n\n\n\n<li><strong>Product<\/strong>: To track the sales of specific products of your online store in different countries.&nbsp;<\/li>\n\n\n\n<li><strong>Country<\/strong>: To analyze the total sales of products in a specific country.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/set-filter-form.png\"><img loading=\"lazy\" decoding=\"async\" width=\"328\" height=\"878\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/set-filter-form.png\" alt=\"set filter form in WooCommerce report\" class=\"wp-image-24789\"\/><\/a><figcaption class=\"wp-element-caption\">Filter report based on order status<\/figcaption><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Generate WooCommerce country per month sales report&nbsp;<\/h3>\n\n\n\n<p>A monthly sales report per country is another useful report informing store managers about the total sales of each month in different countries. By analyzing this report, store owners can recognize which country had the most sales in each month.<\/p>\n\n\n\n<p>To get monthly sales report by country in our plugin, go to the <strong>Cross Tab<\/strong> and choose <strong>Country\/Month<\/strong> report.<\/p>\n\n\n\n<p>Then, set a date range in the <strong>Filter Form<\/strong> and generate the report by pressing the <strong>Search<\/strong> button.<\/p>\n\n\n\n<p>As shown below, you can see the list of all countries with their total sales in each month in separate columns of the table:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Generate-country-per-month-sales-report--1024x880.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1917\" height=\"880\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Generate-country-per-month-sales-report-.png\" alt=\"Generate WooCommerce country per month sales report\u00a0\" class=\"wp-image-24790\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Generate-country-per-month-sales-report-.png 1917w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Generate-country-per-month-sales-report--500x230.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Generate-country-per-month-sales-report--1536x705.png 1536w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Generate-country-per-month-sales-report--1000x459.png 1000w\" sizes=\"(max-width: 1917px) 100vw, 1917px\" \/><\/a><figcaption class=\"wp-element-caption\">country report per month using REPORTiT <\/figcaption><\/figure>\n\n\n\n<p>There are also two options in the filter form allowing you to customize the results displayed in the report as below:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Country<\/strong>: To observe the monthly sales report of one specific country<\/li>\n\n\n\n<li><strong>Status<\/strong>: To get the sales monthly report by country based on specific order status.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/lh7-us.googleusercontent.com\/OJp1kpXqYDnxbsdhuU6N3csOGqo3W9tloXNu3R3hpAuuL-qCZoI_3Ep0OTNiP158t7i1ikizaSk4JlyZAZjyK-m_3OKatvbhbBlbLMWWm3Cl93lYImkQHhhSHnqb2lhzJCmw1hPk3podrkP1CnUl3g\" target=\"_blank\" rel=\"noopener\"><img decoding=\"async\" src=\"https:\/\/lh7-us.googleusercontent.com\/OJp1kpXqYDnxbsdhuU6N3csOGqo3W9tloXNu3R3hpAuuL-qCZoI_3Ep0OTNiP158t7i1ikizaSk4JlyZAZjyK-m_3OKatvbhbBlbLMWWm3Cl93lYImkQHhhSHnqb2lhzJCmw1hPk3podrkP1CnUl3g\" alt=\"\"\/><\/a><figcaption class=\"wp-element-caption\">Filter by country &amp; status<\/figcaption><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/result-country-and-status-column.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1906\" height=\"876\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/result-country-and-status-column.png\" alt=\"result country and status column in WooCommerce table\" class=\"wp-image-24796\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/result-country-and-status-column.png 1906w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/result-country-and-status-column-500x230.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/result-country-and-status-column-1536x706.png 1536w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/result-country-and-status-column-1000x460.png 1000w\" sizes=\"(max-width: 1906px) 100vw, 1906px\" \/><\/a><figcaption class=\"wp-element-caption\">billing country report<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Extra Feature of WooCommerce report plugin<\/h2>\n\n\n\n<p>In addition to generating various types of sales reports, there are some helpful tools in the WooCommerce report plugin that allow store managers to customize the table, download reports or automate sending reports to their emails.<\/p>\n\n\n\n<p>Here, we review some of these tools.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Select report columns<\/h3>\n\n\n\n<p>Select report column is a tool designed above the report table, helping you to customize the report columns table.&nbsp;<\/p>\n\n\n\n<p>By opening the list of <strong>Select Column<\/strong> fields, you are able to mark\/unmark the columns you want to see in the report table.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Select-report-columns-1024x580.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1326\" height=\"580\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Select-report-columns.png\" alt=\"Select report columns in WooCommerce\" class=\"wp-image-24797\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Select-report-columns.png 1326w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Select-report-columns-500x219.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Select-report-columns-1000x437.png 1000w\" sizes=\"(max-width: 1326px) 100vw, 1326px\" \/><\/a><figcaption class=\"wp-element-caption\">Select report columns<\/figcaption><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Export sales by country reports to CSV, Excel, or PDF<\/h3>\n\n\n\n<p>Downloading country sales reports is one of the most important requirements of store managers. In this plugin, there is a <strong>Download<\/strong> icon on the top of the report tables, allowing the user to export the report to different formats like <strong>Excel, CSV, and PDF<\/strong>.<\/p>\n\n\n\n<p>It is also a <strong>Print<\/strong> Option for printing the report directly from the plugin.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Export-sales-by-country-reports.png\"><img loading=\"lazy\" decoding=\"async\" width=\"174\" height=\"181\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/Export-sales-by-country-reports.png\" alt=\"Export WooCommerce sales by country reports\" class=\"wp-image-24798\"\/><\/a><figcaption class=\"wp-element-caption\">Export report to CSV, Excel, or PDF<\/figcaption><\/figure>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center main-cta-cnt has-background is-layout-flex wp-container-core-columns-is-layout-4a33225c wp-block-columns-is-layout-flex\" style=\"background-color:#3d67ff;padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-core-group-is-layout-4f39da6d wp-block-group-is-layout-constrained\" style=\"padding-top:15px\">\n<p class=\"single-cta-heading has-white-color has-text-color has-link-color wp-elements-0991dc6851cfc99e0f24c91f59e458e6\" style=\"font-size:26px;font-style:normal;font-weight:800\">REPORTiT &#8211; Advanced WooCommerce Reporting<\/p>\n\n\n\n<p class=\"single-cta-desc has-white-color has-text-color has-link-color wp-elements-1a28bbf9f87214ec0a50c208a617a7bc\" style=\"font-size:16px\">The easy way to get sales by country report in WooCommerce<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button main-cta-button\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" href=\"https:\/\/ithemelandco.com\/plugins\/woocommerce-report\/?utm_source=blog&amp;utm_content=country-sale-report\" style=\"border-style:none;border-width:0px;border-radius:40px;color:#ffffff;background-color:#0fba5e;padding-top:10px;padding-right:30px;padding-bottom:10px;padding-left:30px;font-style:normal;font-weight:500\" target=\"_blank\" rel=\"noreferrer noopener\">Buy Plugin<\/a><\/div>\n\n\n\n<div class=\"wp-block-button is-style-outline is-style-outline--2\"><a class=\"wp-block-button__link has-white-background-color has-text-color has-background wp-element-button\" href=\"https:\/\/wordpress.org\/plugins\/ithemelandco-woo-report\/\" style=\"border-style:none;border-width:0px;border-radius:40px;color:#3d67ff;padding-top:10px;padding-right:30px;padding-bottom:10px;padding-left:30px;font-style:normal;font-weight:500\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Free Version<\/a><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"532\" height=\"355\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/reportit-banner.png\" alt=\"REPORTiT - Advanced WooCommerce Reporting plugin by ithemeland\" class=\"wp-image-48725\" style=\"width:440px;height:auto\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/reportit-banner.png 532w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/reportit-banner-500x335.png 500w\" sizes=\"(max-width: 532px) 100vw, 532px\" \/><\/figure>\n<\/div>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Why do store managers need sales reports by country?<\/h2>\n\n\n\n<p>Online store managers use sales by country reports in WooCommerce to quickly have an insight into the sales performance of their business in all locations and geographic regions. When used as part of good business practices in financial planning and analysis (FP&amp;A), the manager can improve the revenue, as well as identify any potential problem resulting in poor performance of the business. The comprehensive analysis of this report can also help managers take the required action on time and make smart decisions for developing their business effectively.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Analyzing WooCommerce sales by country is an important step for store owners who want to understand their international market performance. By reviewing where orders come from and how much revenue each country generates, store managers can make better decisions about marketing strategies, product availability, shipping policies, and pricing.<\/p>\n\n\n\n<p>Although it is possible to generate a sales by country report using WooCommerce MySQL queries, this method requires technical knowledge and direct access to the website database. It may also be difficult to customize or analyze complex reports using SQL alone.<\/p>\n\n\n\n<p>For most WooCommerce store owners, using a dedicated reporting plugin like REPORTiT is a much simpler and more flexible solution. The REPORTiT plugin allows users to generate country-based sales reports instantly, apply filters, export reports to different formats, and analyze sales trends without writing any code.<\/p>\n\n\n\n<p>With the right reporting tools, WooCommerce store managers can gain deeper insights into their global sales performance and make data-driven decisions to grow their online business.<\/p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column blog-faq-section is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">FAQ<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">What is a WooCommerce sales by country report?<\/h4>\n\n\n\n<p>A WooCommerce sales by country report shows the number of orders and the total revenue generated from customers in different countries. This report helps store owners understand which geographic markets contribute the most to their sales.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">How can I see sales by country in WooCommerce?<\/h4>\n\n\n\n<p>You can generate a sales by country report by running a SQL query in the WooCommerce database or by using a WooCommerce reporting plugin like REPORTIT that provides built-in country-based sales reports.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">What information does a WooCommerce country sales report include?<\/h4>\n\n\n\n<p>A typical sales by country report includes information such as the billing country of customers, the total number of orders placed in each country, the quantity of products sold, and the total revenue generated.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Why is sales by country analysis important for WooCommerce stores?<\/h4>\n\n\n\n<p>Analyzing sales by country helps store owners identify their most profitable markets, optimize shipping strategies, plan international marketing campaigns, and adjust product availability for different regions.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Can I export WooCommerce sales by country reports?<\/h4>\n\n\n\n<p>Yes. Many WooCommerce reporting tools allow you to export country sales reports to formats such as CSV, Excel, or PDF so that you can analyze the data further or share it with your team.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Can WooCommerce track customer countries automatically?<\/h4>\n\n\n\n<p>Yes. WooCommerce stores automatically record the billing and shipping country for each order. This information can later be used to generate reports and analyze international sales performance.<\/p>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>For online stores that sell products internationally, understanding where customers come from is essential for making better business decisions. A WooCommerce sales by country report helps store owners analyze their revenue across different countries and identify which markets generate the most orders. By reviewing sales data by country, store managers can discover valuable insights such [&hellip;]<\/p>\n","protected":false},"author":1990,"featured_media":24801,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[50,73],"tags":[],"class_list":["post-24779","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","category-woocommerce"],"featured_image_url":"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/11\/get-sales-by-country-report-500x335.jpg","excerpt_plain":"For online stores that sell products internationally, understanding where customers come from is essential for making better business decisions. A WooCommerce sales by country report helps store owners analyze their revenue across different countries and identify which markets generate the most orders. By reviewing sales data by country, store managers can discover valuable insights such [&hellip;]","_embedded":{"wp:term":[[{"term_id":50,"name":"Tutorials","slug":"tutorials","term_group":0,"term_taxonomy_id":50,"taxonomy":"category","description":"Follow and learn the latest educational articles about WordPress plugins and WooCommerce here","parent":0,"count":256,"filter":"raw"},{"term_id":73,"name":"WooCommerce","slug":"woocommerce","term_group":0,"term_taxonomy_id":73,"taxonomy":"category","description":"Do you use WooCommerce to manage your online store? We suggest you read this category of WooCommerce articles.","parent":50,"count":205,"filter":"raw"}]]},"_links":{"self":[{"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/posts\/24779","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/users\/1990"}],"replies":[{"embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/comments?post=24779"}],"version-history":[{"count":3,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/posts\/24779\/revisions"}],"predecessor-version":[{"id":50948,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/posts\/24779\/revisions\/50948"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/media\/24801"}],"wp:attachment":[{"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/media?parent=24779"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/categories?post=24779"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/tags?post=24779"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}