Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a requirement to accumulate sales qty starting from April to March in our fiscal year.
So far i tried to create a formula but still did not get what i want because the value starting from January.
this is my formula:
Sum(Aggr(RangeSum(Above(TOTAL Sum({<
[FiscalMonth]=
>}
QTY_W_SALES),0,RowNo(Total))),[FiscalMonth]))
This is the result :
how can i get the proper formula to have "accum" value start summarizing in April not in January ?
regarding our fiscal year starting in April.
Thank You for your help,
Tofanz
Have you tried just this
RangeSum(Above(TOTAL Sum({<[FiscalMonth]>} QTY_W_SALES), 0, RowNo(TOTAL)))
Please change below variable from
SET FirstMonthOfYear=1;
to
SET FirstMonthOfYear=4;
Dear Sameer,
i'm sorry if my question and explanation didn't clear regarding this is my first time to post a question in this forum and my writing in english is very poor.
My current issue is I want accumulate Sales Qty in Fiscal year Starting April 2018 - March 2019.
Unfortunately my formula just see the first Month of the common Year date which is Start from January - December. and the result become Jan 2019 - Dec 2018.
and my goal is like this pict below:
Have you tried just this
RangeSum(Above(TOTAL Sum({<[FiscalMonth]>} QTY_W_SALES), 0, RowNo(TOTAL)))