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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
Anonymous
Not applicable

Load data using Folder option - value based file

Hi, 

 

I am fetching latest file from my workstation using "Folder" option and sorting files using latest timestamp. 

 

Now I want to fetch two files with latest timestamp but files will be having two different names. 

client-keyword 20171121      22/11/2017 14:21

client-adgroup20171121       22/11/2017 14:22   

client-keyword20171121      22/11/2017 10:21

 

 

I am able to fetch 2nd file but now I want to create 2 dashboards one for keyword and one for adgroup. How will I choose files based on file name but with latest timestamp.

 

In short I want to fetch :

client-keyword 20171121      22/11/2017 14:21

client-adgroup20171121       22/11/2017 14:22   

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Thanks, But I have found another solution of adding Text.contains() in M code which will give me the list of desired files and then sort the data and keep top row.

View solution in original post

4 REPLIES 4
Greg_Deckler
Community Champion
Community Champion

If I did this right, this will get you the first 2 latest files:

 

let
    Source = Folder.Files("c:\temp\powerbi\csvs"),
//Latest File
    #"Filtered Rows Latest" = Table.SelectRows(Source, let latest = List.Max(Source[Date accessed]) in each [Date accessed] = latest)

//Second Latest File
    #"Filtered Rows1" = Table.SelectRows(Source, let latest = List.Max(Source[Date accessed]) in each [Date accessed] <> latest),
    #"Filtered Rows" = Table.SelectRows(#"Filtered Rows1", let latest = List.Max(#"Filtered Rows1"[Date accessed]) in each [Date accessed] = latest)

    Append = Table.Combine({#"Filtered Rows Latest", #"Filtered Rows"})
in
    Append


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
Anonymous
Not applicable

Hey smoupre,

 

It is giving me 2 latest file but my problem is I want my files to be picked up by their names. 

if Filename contains Adgroup and is of latest timestamp

and if filename contains keyword and it is also of latest timestamp for "Keyword" value

@Anonymous,

 

You may add two calculated columns.

group =
SWITCH (
    TRUE (),
    SEARCH ( "keyword", Table1[name],, 0 ) > 0, "keyword",
    SEARCH ( "adgroup", Table1[name],, 0 ) > 0, "adgroup"
)
rank =
RANKX (
    FILTER ( Table1, Table1[group] = EARLIER ( Table1[group] ) ),
    Table1[timestamp],
    ,
    DESC,
    DENSE
)
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Thanks, But I have found another solution of adding Text.contains() in M code which will give me the list of desired files and then sort the data and keep top row.

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.