Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a field named Daily Process Date. I am trying to display only the latest date in a straight table, but keep getting 'Error in Calculation'.
If you're using aggregation in calculated dimension (in this case max), make sure to use aggr():
=aggr(Max(Process_Date_Field), Field)
I can't tell without knowing more details what field you should use for aggregation. Think of what you would use if it was GROUP BY. It could be a list of fields as well.
What is the expression you are using? "=Max(Process_Date_Field)" should probably do it.
That is what I am using, but am getting Error in Calculated Dimension
If you're using aggregation in calculated dimension (in this case max), make sure to use aggr():
=aggr(Max(Process_Date_Field), Field)
I can't tell without knowing more details what field you should use for aggregation. Think of what you would use if it was GROUP BY. It could be a list of fields as well.