Skip to main content
Skip table of contents

SI.EXPANDBUDGETRANGE

Overview

The SI.EXPANDBUDGETRANGE function returns the Budget ID values as defined within Sage Intacct.

Syntax

CODE
=SI.EXPANDBUDGETRANGE(ConnectionName, Budget, DefaultBudget, IsConsolidated)

Parameters

The SI.EXPANDBUDGETRANGE function uses the following arguments:

Argument

Required/ Optional

Description

ConnectionName

Required

The name of the connection as configured in the Connection Manager

Budget

Optional

The Budget IDs to include in the results

DefaultBudget

Optional

TRUE - returns only the default budget matching the BudgetRange argument
FALSE (default) - returns all non-default budgets matching the BudgetRange argument

IsConsolidated

Optional

TRUE - returns only Consolidated budgets matching the BudgetRange argument
FALSE (default) - returns all non-consolidated budgets matching the BudgetRange argument, see Filtering Techniques for Velixo Functions

Examples

Given the following configuration within Sage Intacct:


(includes a total of 14 budgets, one of which is the default, and two are consolidated budgets)

Example 1 - all budgets

CODE
=SI.EXPANDBUDGETRANGE("Sage","*")   OR   SI.EXPANDBUDGETRANGE("Sage")


Description
Returns all budgets defined in Sage Intacct

Result


Example 2 - default budgets

CODE
=SI.EXPANDBUDGETRANGE("Sage",,TRUE)


Description
Returns all budgets marked in Sage Intacct as DEFAULT

Result


Example 3 - consolidated budgets

CODE
=SI.EXPANDBUDGETRANGE("Sage",,,TRUE)


Description
Returns all budgets marked in Sage Intacct as CONSOLIDATED

Result


Example 4 - budgets starting with certain characters

CODE
=SI.EXPANDBUDGETRANGE("Sage","Master?")


Description
Returns all budgets starting with the word "Master"

Result

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.