Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

CALCULATETABLE Function error

I am using the following expression to poulate a measure:-   TestMeasure = CALCULATETABLE( 'Table', 'Table'Field <> BLANK() )   Which is returniong the following error: -       The expression...
  • Anonymous's avatar
    Anonymous
    8 years ago

    CALCULATETABLE returns a table but then you are passing this whole table into a measure, which expects a scalar value. How about using MAX('table'[column])?