Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
How do I get % for the each period(100%) not relative to over all total?
Count( {<YEAR, MONTH, Period={">=$(=Date(MonthStart(Max(Period),-13))) <=$(=Date(Max(Period)))"}>} EMPLID)
/ Count( {<YEAR, MONTH, Period={">=$(=Date(MonthStart(Max(Period),-13))) <=$(=Date(Max(Period)))"}>}TOTAL EMPLID)
<Dim1,Dim2,..>
Finally it worked when I have added <YEAR,MONTH,Period>
Like this?
Count( {<YEAR, MONTH, Period={">=$(=Date(MonthStart(Max(Period),-13))) <=$(=Date(Max(Period)))"}>} EMPLID)
/ Count( {<YEAR, MONTH, Period={">=$(=Date(MonthStart(Max(Period),-13))) <=$(=Date(Max(Period)))"}>}TOTAL <YEAR, MONTH> EMPLID)
Hi,
try this
/ Count( {<YEAR, MONTH, Period={">=$(=Date(MonthStart(Max(Period),-13))) <=$(=Date(Max(Period)))"}>}TOTAL <Dim1,Dim2,..> EMPLID)
try to add all Dimwnsions which You have in Group.
<Dim1,Dim2,..>
Finally it worked when I have added <YEAR,MONTH,Period>