Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
How to get the Max of the Year Quarter Base for this Data Type.
Anyone, Please help!!
Thank you!!
Hi, it depends on structure of this [Year Quarter Base] field structure, how it is made, is combination of multiple fields or just string. If string, maybe this solution can be used to present max dimension:
=if( Num(KeepChar([Year Quarter Base],'0123456789'))=max(total Num(KeepChar([Year Quarter Base],'0123456789'))), [Year Quarter Base])
Hi.
Probably something like
SUM(AGGR(MAX(Value),[Year Quarter Base])).
Value being the field you want the max from
Max String
Hi, it depends on structure of this [Year Quarter Base] field structure, how it is made, is combination of multiple fields or just string. If string, maybe this solution can be used to present max dimension:
=if( Num(KeepChar([Year Quarter Base],'0123456789'))=max(total Num(KeepChar([Year Quarter Base],'0123456789'))), [Year Quarter Base])
Hi.
Probably something like
SUM(AGGR(MAX(Value),[Year Quarter Base])).
Value being the field you want the max from
Max String