Discussions
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Join us
NSC | SuiteQL: Utilizing BUILTIN.CURRENCY_CONVERT for Reports and Data Analytics
BUILTIN.CURRENCY_CONVERT enables accurate financial analysis, reporting, and decision-making in multinational business environments. These queries demonstrate how it can be applied to various real-world scenarios, such as to analyze sales performance across different regions in their local currencies and then convert the data to the company's base currency for consolidated reporting.
The sample query below shows how BUILTIN.CURRENCY_CONVERT is used to convert the Invoice transactions’ Transaction Total Amount to Canadian Dollars.
SELECT DISTINCT foreignTotal as Transaction_Total_Amount, BUILTIN.CURRENCY_CONVERT(foreignTotal,3) as Total_Amount_CAD, id as Internal_ID FROM transaction WHERE type = 'CustInvc';
—
Do you know any other useful tips related to SuiteQL? Feel free to share it with the Community!
Refer a Member to the Community | Earn the Answer Accepter Badge | Vote for the contents you'd like to see
