Forum Discussion
Expressions that yield variant data-type cannot be used to define calculated columns.
- 7 years ago
Hey,
I'm not sure what exactly is going on, but as I change the data type (not just format) of the column to decimal number, it seems to work, at least in my simple table.
Hm, I'm wondering why you use CALCULATE(...), this creates a context transition meaning, transforming the exsisting row context (the current row, as you are creating a calculated column) into a filter context. Basically each column value of your table will act as a filter value. This means, if your table contains a row identifier, just one row is used to calculate PERCENTILE.INC.
Regards,
Tom
Hey,
I'm not sure what exactly is going on, but as I change the data type (not just format) of the column to decimal number, it seems to work, at least in my simple table.
Hm, I'm wondering why you use CALCULATE(...), this creates a context transition meaning, transforming the exsisting row context (the current row, as you are creating a calculated column) into a filter context. Basically each column value of your table will act as a filter value. This means, if your table contains a row identifier, just one row is used to calculate PERCENTILE.INC.
Regards,
Tom
- markus_zhang7 years agoAdvocate III
Thanks! THis solves my problem. Somehow I have to change the source column to decimal to get rid of the error. Not sure if it's a bug or something.