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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
dadb25
Helper I
Helper I

Sort files by month

Hi Community,

 

I use data in a Sharepoint folder, where 3 news files are automatically stored every days.

dadb25_0-1706003554442.png

 

I want to sort them, to keep the 3 earliest files (sorted by column modified).

For the current month, I know how to do it, but how can I sort these files for every months ?

Meaning, I need the 3 last files for January, for December and so on ... ?

Thank you

Regards

1 ACCEPTED SOLUTION

Essaye cela dans ton code, 

let
    Source = Ta Source SharePoint,
    AddYear = Table.AddColumn(Source, "Year", each Date.Year([Date modified]), type number),
    AddYearMonth = Table.AddColumn(AddYear, "Month", each Date.Month([Date modified]), type number),
    SortedFiles = Table.Sort(AddYearMonth, {{"Date modified", Order.Descending}}),
    GroupedFiles = Table.Group(SortedFiles, {"Year", "Month"}, {
        {"AllData", each _, type table}}),
    AddIndexAndFilter = Table.TransformColumns(GroupedFiles, {
        "AllData", each Table.FirstN(Table.AddIndexColumn(_, "Index", 1, 1, Int64.Type), 3)
    })
in 

AddIndexAndFilter

 

Ensuite tu developpes la colonne Data et tu gardes les colonnes que tu veux

View solution in original post

4 REPLIES 4
Einomi
Resolver II
Resolver II

Hi @dadb25 

So you want the 3 most recent files for every month ?

Hi @Einomi 

Yes, that's what I need 😁

Essaye cela dans ton code, 

let
    Source = Ta Source SharePoint,
    AddYear = Table.AddColumn(Source, "Year", each Date.Year([Date modified]), type number),
    AddYearMonth = Table.AddColumn(AddYear, "Month", each Date.Month([Date modified]), type number),
    SortedFiles = Table.Sort(AddYearMonth, {{"Date modified", Order.Descending}}),
    GroupedFiles = Table.Group(SortedFiles, {"Year", "Month"}, {
        {"AllData", each _, type table}}),
    AddIndexAndFilter = Table.TransformColumns(GroupedFiles, {
        "AllData", each Table.FirstN(Table.AddIndexColumn(_, "Index", 1, 1, Int64.Type), 3)
    })
in 

AddIndexAndFilter

 

Ensuite tu developpes la colonne Data et tu gardes les colonnes que tu veux

Merci beaucoup, c'est parfait 😁

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors
Top Kudoed Authors