Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
george456
Creator
Creator

Future Calender

Dear Community

I have a problem to solve. I do not know what the best way is to do this:

I have a calendar that has future dates because of forecasting values. Actual Sales however is one month in arrears.

I have to figure out what I can use as Max date based on Actual Sales 

I hope this make sense

Thanks

 

1 Solution

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

If the amount/value field is null for the future dates, then something along the lines of 

=Max({<Amount={'"*"}>} Date)

Otherwise, add a flag field in the load script that indicates actual values

=Max({<ActualFlag = {1}>} Date)

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein

View solution in original post

2 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

If the amount/value field is null for the future dates, then something along the lines of 

=Max({<Amount={'"*"}>} Date)

Otherwise, add a flag field in the load script that indicates actual values

=Max({<ActualFlag = {1}>} Date)

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
george456
Creator
Creator
Author

Hi

Thanks worked like a charm: I just had to adapt a bit please see my syntax

=Max({<Type={'Sales Achieved'},Units={"*"}>}Month)

 

Regards