Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
renuka_sasikumar
Creator III
Creator III

Rolling 12 months for the current Financial Year

I want to show revenue Data (Month wise) for the Financial Year 2015-2016, In which The Month should be from Apr-2015 till the current month.

Can anyone help me the expression, I tried using express heading in condition as

=Month(AddMonths(vMaxDate,-1))&'-'&Year(AddMonths(vMaxDate,-1))

But I am getting Mar-2015,.....

Please find the below snapshot of my requirement

Particulars FTD MTD November RR YTD FY Oct-2015 Sep-2015 Aug-2015 Jul-2015 Jun-2015 May-2015 Apr-2015
Revenue0.000.000.003259.395452.870.000.000.000.000.000.000.00

Regards,

Renuka S

1 Solution

Accepted Solutions
renuka_sasikumar
Creator III
Creator III
Author

Hi,

I got this by adding this in my Master Calendar.

LOAD LinkCommonDate, Quarter as MonthYearQuarter

Resident Calendar_Year_2012;

Join

MasterTable2:

LOAD

LinkCommonDate, Cal_YearMonth as MonthYearQuarter

Resident Calendar_Year_2012;

Regards,

Renuka S

View solution in original post

3 Replies
Anonymous
Not applicable

use monthname() at script level like:

monthbname(Date) as RollingMonth.

And then at expression level..

Use calculated dimension like:

IF(RollingMonth>='April 2015', RollingMOnth)

Hope this will help

renuka_sasikumar
Creator III
Creator III
Author

Hi,

I got this by adding this in my Master Calendar.

LOAD LinkCommonDate, Quarter as MonthYearQuarter

Resident Calendar_Year_2012;

Join

MasterTable2:

LOAD

LinkCommonDate, Cal_YearMonth as MonthYearQuarter

Resident Calendar_Year_2012;

Regards,

Renuka S