There are many extensions out there which you can use to get country wise sales reports. However, you can retrieve much more things if you be little familiar with SQL queries. You can use below queries to get annual sales figures based on countries.
*Please note that the order values displayed are the subtotals before taxes.Detailed Report
SELECT orders.increment_id as id, orders.state, addresses.firstname, addresses.lastname, addresses.country_id, orders.subtotal as subtotal, orders.created_at
FROM sales_flat_order AS orders
JOIN sales_flat_order_address AS addresses
ON addresses.parent_id=orders.entity_id
WHERE relation_child_real_id IS NULL
AND addresses.address_type=’shipping’
AND YEAR(orders.created_at) = YEAR(CURDATE())
Summery Report
SELECT addresses.country_id, sum(orders.subtotal) as subtotal
FROM sales_flat_order AS orders
JOIN sales_flat_order_address AS addresses
ON addresses.parent_id=orders.entity_id
WHERE relation_child_real_id IS NULL
AND addresses.address_type=’shipping’
AND YEAR(orders.created_at) = YEAR(CURDATE())
GROUP BY addresses.country_id
Hope this helped!
Creating an engaging and informative online quiz or assessment can be a powerful tool for… Read More
Work-related stress is a common issue in the hospitality industry, where employees often face long… Read More
In a leadership position, assertiveness and effective communication skills are crucial for success. Being able… Read More
Employee recognition and rewards programs play a crucial role in motivating and engaging employees, as… Read More
Customer feedback and online reviews play a crucial role in shaping a company's reputation and… Read More
Effective time management is crucial for stay-at-home parents who juggle multiple responsibilities on a daily… Read More