Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
HI,
i have a problem with set analysis-
this is my expression
SUM({<For_Year={$(<=Max([SO YEAR L]))}>}SO_LINE_SALES_VALUE_USD)
do you know why this expression is not working?
if im not putting the < its working...
tnx,
adi
That should be
SUM({<For_Year={"<=$(=Max([SO YEAR L]))"}>} SO_LINE_SALES_VALUE_USD)
That should be
SUM({<For_Year={"<=$(=Max([SO YEAR L]))"}>} SO_LINE_SALES_VALUE_USD)
Try like this
SUM({<For_Year={'<=$(=Max([SO YEAR L]))'}>}SO_LINE_SALES_VALUE_USD)
Regards,
Jagan.
This should also work:
Sum({<For_Year={$(='<=' & Max([SO YEAR L]))}>} SO_LINE_SALES_VALUE_USD)