Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
adamh1
Frequent Visitor

Fiscal year period sorting

Hi Guys  , We have a fiscal year Jul to Jun,  - in the format tab I'm not able to sort graphs of tables by the sequence of months form Jul to Jun

In trying to fix/resolve this  in the data tab I've tried 3 differnt columns for the financial year period numbers i.e.

i. FinMonthSort = if(Month(DateKey[date])>6,Month(DateKey[date])-6,Month(DateKey[Date])+6)

ii.FMonthNo = SWITCH(DateKey[MonthNo],    1,"7",    2, "8",    3, "9",    4, "10",    5, "11",    6, "12",    7, "1",    8, "2",    9, "3",    10, "4",    11, "5",    12, "6",  ( deriving financial month form calander month using switch)
    BLANK ())

iii.FinDate = DATEADD(DateKey[Date],+6,MONTH) and derived the Financial year period number from the FinDate

 

- when sorting each financial month column in the data tab the sequence of the table contents doesn't change when clicking on the sort icon

- the table only sorts when sorting the column directly i.e. select the column and right click and select "Sort in asending order"... (don't know if this a the problem??) 

When I go to the format tab the changes from sorting don't flow thru - the month short name "MMM" continues to be sorted alphabetically 

any ideas or further information I could provide to help solve please let me know.

 

many thanks Adam

2 REPLIES 2
Anonymous
Not applicable

Here's my solution:

 

1. Duplicate Date Column

2. Split Column by Delimiter (however your date is formated, I split by each occurrence of /)

3. Delete the column with the days, since the months are the only thing that I'm concerned about 

4. Exit Query Editor 

5. Right click on the table that you are interested in, choose 'New Column')

6. Essentially you create a measure that says if the month is between x and y then produce the year, if not, produce year-1. Here's mine for fiscal year July x+1 through June x: 

 

Fiscal Year = IF('Transactions FY11 to FY18'[Date Month]<7,'Transactions FY11 to FY18'[Date Year], 'Transactions FY11 to FY18'[Date Year]-1)

mussol_
Advocate II
Advocate II

Hi Adamh1,

try to add a column in wich 6=1, 7=2, etc.

Later, sort your FY month by this column.

 

Hope it will be useful.

 

Regards.

 

Josep.

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.