Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to get all the possible values 12 months back from the selections made in calendar. Here is what I am trying, but it is not working.
Sum(
{<
ACTUALLASTDAY = {"$(=((P(AddMonths(BUDGETEND,-12)))))"}
>}
VISIT_COUNT)
Thanks for any assistance.
hi,
what do you want to do exactly ?
whatever the selection in your month list, you always want to calculate your sum on the 12 months ?
Regards.
Johann
If I have Jan 2012 selected I need it to calculate for Jan 2011. If I have Jan 2012 and Aug 2012 selected I need it to calculate for just Jan 2011 and Aug 2011 not the months in between.
I think you don't need to use the P() function to do this.
Try this :
Sum( {< ACTUALLASTDAY = {">= $(=AddMonths(max(ACTUALLASTDAY),-12)) < $(=max(ACTUALLASTDAY))"} >} VISIT_COUNT)
By the way, I don't understand the link between your need and the field BudgetEnd ?
regards
stéphane
Stephane I am using BUDGETEND because it is a island Calendar. Also, your suggestion will not work because it will take all the monthe in between my selections. For instance if I have JAN-2013 and AUG-2013 chosen it will take all the values between JAN-2012 and AUG-2012. I am just wanting the values for JAN-2012 and AUG-2012.
I think i understand what you want.
I suggest you to build two distinct fields in your model : month and year so you can make selection on month or on year.
This way the expression would be just : Sum( {< YEAR= {"$(=max(YEAR)-1)"} >}VISIT_COUNT)