Error Messages/41014
Error message examples
Illegal conglomeration function passed as 5th parameter to MdTable.
Cause
It is possible that two or more rows of the first parameter, «T», to MdTable specify identical coordinates. In this case, a conglomeration function is used to combine the values for the given cell. The «conglomerationFn» parameter is either a handle to a valid conglomeration function or a text value specifying which conglomeration function is to be used. Possible conglomeration functions are are Sum(default), Min, Max, Average, and Product.
Illegal function was passed as the fifth parameter, «conglomerationFn», to the MdTable function. A valid conglomeration function takes a list of values as its parameter and returns a single value back. Random is not a valid conglomeration function and the following call would trigger this error.
Mdtable(Flat_fact_table, Rows, Cols, ['Index_a', 'Index_b'], valuecolumn: Countries, conglomerationFn: 'random')
Remedies
Pass a valid conglomeration function as the 5th parameter to the MdTable function.
Enable comment auto-refresher