Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Bonjour,
Je souhaite afficher une valeur dite "DN" sur un graphe mois par mois.
Idéalement cette valeur devrait être la valeur calculé (aucune somme, c'est un %) sur les derniers jours ouvrés du mois (pour avoir un historique de fin de mois), cependant je suis bloquée...
Sur ma représentation je choisi une date : Cal_Date (ou j'ai dispo Cal_working_Date)
J'ai mis en ligne pour le moment : =lastworkdate (Cal_Working_Day,5)
J'ai mis en mesure :
Bonjour @CG2447 ,
first you may need to adjust the Cal_Working_Day field to ensure it properly represents the working days.
Check that you are correctly identifying the last working day of each month. Try with:
lastworkdate(MonthEnd(Cal_Date), Cal_Working_Date)
So your measure should be something like this:
Count(
{<
Cal_Working_Day={"$(=lastworkdate(MonthEnd(Cal_Date), Cal_Working_Date))"},
Ref_Mandatory={1}, ND_Presence={1},
ND_Id={"=min($(vAllowOnlyND)ND_Last_Reg) - min($(vAllowOnlyND)total<Cust_Id> ND_Last_Reg) =0"}
>}
ND_Line_Id
)
/
Count(
{<
Cal_Working_Day={"$(=lastworkdate(MonthEnd(Cal_Date), Cal_Working_Date))"},
Ref_Mandatory={1},
ND_Id={"=min($(vAllowOnlyND)ND_Last_Reg) - min($(vAllowOnlyND)total<Cust_Id> ND_Last_Reg) =0"}
>}
ND_Line_Id
)
Hope this helps you