Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello friends,
I have a requirement in my project, Where I have to write a set expression to determine current month and current quarter sales
But the problem is that i have tried so many different expressions and is not able to achieve it.
i have tried it in these ways
=num(Sum({$<Month = {'$(=Num(month(today()-1)))'}>} [Extended Price] ) ,'$#,###.') keeping in mind that the date in my DB is in Number format. I don't know where and what am i doing wrong. But this is kind of an urgent requirement for me.. Please help.
I am looking at it now. Do you want to see this First value for date and first value of quantity or you want sum of quantity on first date for an item?
I want to see the sum(qty) for the 1st date.
Hello Everyone- In the same requirement i want to find out the 1st po date and 1st po Qty
to get the 1st po date i am doing min(po date) which is working fine
but to get the 1st po qty i am trying to do
=Alt(FirstSortedValue(Aggr(Sum([Qty On Order]), [Item Number], [Promise Date]), [Promise Date]), Aggr(Sum([Qty On Order]), [Item Number], [Promise Date]))
=Sum({<[Promise Date] = {"$(=Min([Promise Date]))"}>} [Qty On Order])
Both the expressions are not working for me please give me some suggetions how to get the 1st PO Qty for that item.
the other thing happening =Sum({<[Promise Date] = {"$(=Min([Promise Date]))"}>} [Qty On Order]) with this expression is that it is working only if i select one item, and is displaying all over when no item is selected in the chart.