Move faster and accomplish more with a professional-grade, generative AI assistant that transforms the way you work. Thomson Reuters CoCounsel is with you every step of the way, backed by authoritative content and industry-leading expertise.
Conduct legal research efficiently and confidently using trusted content, proprietary editorial enhancements, and advanced technology.
Accelerate how you find answers with powerful generative AI capabilities and the expertise of 650+ attorney editors. With Practical Law, access thousands of expertly maintained how-to guides, templates, checklists, and more across all major practice areas.
Move faster and accomplish more with a professional-grade, generative AI assistant that transforms the way you work. Thomson Reuters CoCounsel is with you every step of the way, backed by authoritative content and industry-leading expertise.
Provides a full line of federal, state, and local programs. Save time with tax planning, preparation, and compliance.
Automate work paper preparation and eliminate data entry
Software that keeps supply chain data in one central location. Optimize operations, connect with external partners, create reports and keep inventory accurate.
Automate sales and use tax, GST, and VAT compliance. Consolidate multiple country-specific spreadsheets into a single, customizable solution and improve tax filing and return accuracy.
Search volumes of data with intuitive navigation and simple filtering parameters. Prevent, detect, and investigate crime.
Identify patterns of potentially fraudulent behavior with actionable analytics and protect resources and program integrity.
Analyze data to detect, prevent, and mitigate fraud. Focus investigation resources on the highest risks and protect programs by reducing improper payments.
Around the globe, with unmatched speed and scale, Reuters Connect gives you the power to serve your audiences in a whole new way.
Reuters Plus, the commercial content studio at the heart of Reuters, builds campaign content that helps you to connect with your audiences in meaningful and hyper-targeted ways.
Reuters.com provides readers with a rich, immersive multimedia experience when accessing the latest fast-moving global news and in-depth reporting.
Shop our latest titles
ProView Quickfinder favorite libraries
Expression | Description |
---|---|
reporting.CurrentClient.Name | Fetches the name of the reporting entity as shown in the list of reporting entities. |
System.Threading.Thread. CurrentThread.CurrentCulture.NumberFormat. CurrencySymbol | Currency symbol as defined in the regional settings of the reporting entity. |
reportHelper.CurrentPeriod.YearPeriod | Automates the wording of the financial period. Returns 'year' if the financial period is a year, or 'period' if it's a period. |
reportHelper.Text.StartSentence(Expression) | Capitalizes the leading letter in the 1st word of the expression. |
calculatedRow.PositiveNegativeText('profit/(loss)') | Automates the wording of profit/(loss) in tables based on the value of the table row. Table shows:
|
reportHelper.Text.StartSentence (calculatedRow.PositiveNegativeText ('profit/(loss)')) | Capitalizes the leading letter of the 1st word with the profit/(loss) automation. Useful for starting table row narratives, for example, 'Profit for the year'. |
calculatedRow.PositiveNegativeText('gain/(loss)') | This calculation functions similarly to the profit/(loss) case, but uses 'gain/(loss)' wording. You can easily update for other terms like income/(loss). |
if reporting.Queries.CategoryValueOrZero('Profit', 0.01m, 'CurrentPeriod', null, null, false, null) < 0 then 'profit' else if reporting.Queries.CategoryValueOrZero('Profit', 0.01m, 'CurrentPeriod', null, null, false, null) > 0 then 'loss' | Automates the wording of 'profit', 'loss', or 'result' within narratives using 'if-else' logic. Example: "The profit for the year was £2,000,000". This expression returns:
note
This expression doesn't account for a break-even scenario or 'result'. Including such a state would significantly alter the sentence structure. The category code in this expression is specific to the content you're working with. |