Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Fiscal Year is from October through September.
I rearranged the order of the month names with
MonthNames='Oct;Nov;Dec;Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep';
However, I can't get them ordered on the X axis properly. The order is in reverse.
I tried the Dort Dimensions but could not get the sort order to change. . .
Any suggestions??
This suggestion appears to be the best implementation workaround. however, I can't get this to override the monthly sort, even when unchecked for sorting. . . not sure why. . .
The system data is stored YYYYMM, and that works, just doesn't present well, but maybe then I do the inline load of 201301, Oct
201302, Nov
let me give that a try. . . thanks!
Try something like this
load
*,
dual(
date(Data,'MMM'),
AddMonths(Data,-3) // Trick...
) as FiscalMonth;
load
date(addmonths(MonthStart(Today()),-RecNo())) as Data
autogenerate 24; // generating a small calendar
Hi,
Can you attach some sample file.
Regards,
jagan.
This is because you never tried my suggestion
First, you have to have a calendar. It is needed for many purposes.
Second, if you use fiscal year, make sure it is reflected in the calendar.
Third - see attached example. Notice that the FiscalMonthName list box is sorted as you want it. I use a variable FisclMoShift so most fiscal year rules are satisfied by simply entering the shift and reloading.
Regards,
Michael
Michael,
The Gregorian calendar does not correlate 100% with the fiscal calendar by day. There are January and March days in Fiscal February, September days in fiscal october, etc, . . . so that's why I can't do a direct date conversion. . . The data is already converted to the fiscal month and the individual day is not brought in. . .
sorry to have ignored you for so long. . .
cleveranjos WOW! more programming than I expected, though I am greatly appreciative. though it will take me awhile to understand what you wrote and how to use it. . . only worked with this software for about a week on my own. .
t.
If you already have a calendar you only need the "dual" function.
That was an example
Jagan Mohan
Thank you! I got it to work. . . I was getting confused between function names and filed/column names, and now I am good! I just had to think about it a bit more, and all is fine!
thank you!