Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
NetSuite Admin Tip | Analyze Customer Transactions with Aggregated Insights Using SuiteQL
Understanding Customer transaction behavior is essential for making informed business decisions. As an Administrator, having quick access to summarized data such as total spend, average transaction value, and transaction frequency can help you identify high-value customers, monitor trends, and support strategic planning.
This article demonstrates how you can use SuiteAnalytics (via SQL queries) to generate a clear, aggregated view of customer transactions by type.
Sample Query
SELECT
c.entityid AS customer_name, -- Customer display name for clear account identification
t.type AS transaction_type, -- Transaction type (e.g., SalesOrd, CustInvc, etc.)
AVG(t.foreigntotal) AS avg_amount, -- Average transaction amount for each unique customer & type (using transaction/foreign currency) Richard James Uri - SuiteCloud | WMS Tech | SuiteCommerce Advanced
----
- NetSuite Admin Corner | New to NetSuite
- Explore the NSC Webinars Category
- Join our poll and share your ideas! We want to know what you think. Don't forget to comment and make your voice heard!
1
