PowerQueryFormulaCollection

PowerQueryFormulaCollection class

Represents all power query formulas in the mashup data.

class PowerQueryFormulaCollection;

Methods

MethodDescription
get(number)Gets [ PowerQueryFormula](../ powerqueryformula/) by the index in the list.
get(string)Gets [ PowerQueryFormula](../ powerqueryformula/) by the name of the power query formula.
removeBy(string)Remove power query formula by name.
getCount()@deprecated. Please use the ‘count’ property instead. Gets the number of elements contained in.
isNull()Checks whether the implementation object is null.

get(number)

Gets [ PowerQueryFormula](../ powerqueryformula/) by the index in the list.

get(index: number) : PowerQueryFormula;

Parameters:

ParameterTypeDescription
indexnumberThe index.

Returns

PowerQueryFormula

get(string)

Gets [ PowerQueryFormula](../ powerqueryformula/) by the name of the power query formula.

get(name: string) : PowerQueryFormula;

Parameters:

ParameterTypeDescription
namestringThe name of the item.

Returns

PowerQueryFormula

removeBy(string)

Remove power query formula by name.

removeBy(name: string) : void;

Parameters:

ParameterTypeDescription
namestringThe name of power query formula.

getCount()

@deprecated. Please use the ‘count’ property instead. Gets the number of elements contained in.

getCount() : number;

isNull()

Checks whether the implementation object is null.

isNull() : boolean;