Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

Matrix.MBS

Calls a MBS function with parameters from the matrix.

Component Version macOS Windows Linux Server iOS SDK
Matrix 16.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "Matrix.MBS"; MatrixRef; FunctionName )   More

Parameters

Parameter Description Example
MatrixRef The matrix reference number. $matrix
FunctionName The name of the function to call. "Text.Concat"

Result

Returns result or error.

Description

Calls a MBS function with parameters from the matrix.
We loop over all rows and columns to collect values for parameter list.
Empty cells are ignored.
We pass through the result back to you.

Examples

Try it:

let([
    m = MBS("Matrix.New"; 3; 1);
    s = MBS("Matrix.SetValue"; m; 0; 0; "Hello");
    s = MBS("Matrix.SetValue"; m; 1; 0; " ");
    s = MBS("Matrix.SetValue"; m; 2; 0; "World");
    r = MBS("Matrix.MBS"; m; "Text.Concat");
    m = MBS("Matrix.Release"; m)
]; r)

See also

Release notes

  • Version 16.2
    • Added Matrix.MBS function to call a MBS function with taking parameters from the matrix.

Blog Entries

This function is free to use.

Created 18th March 2026, last changed 18th March 2026


Matrix.Lookup - Matrix.Max