Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Can anyone tell me why I can't use Min(adate) in a calculated dimension?
='Contract End from ' & ' ; Contract Types ' & GetFieldSelections([Contract Type])
works fine,
but
='Contract End from ' & min([Contract End]) & ' ; Contract Types ' & GetFieldSelections([Contract Type])
Does not.
Regards,
M
It's in the variable overview, but it doesn't change, and has a date of 1899
regards,
M.
I didn't hear it but i think you are going for a min date across all records in the current selections, not a dimensional mininmum. if that is the case this works in your sample as well:
=date(Min( total EndDate))
Thanks, adding TOTAL solves my original issue as well.
Regards,
M.