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
_n_MarianLein
Helper II
Helper II

Find latest time per date / Grouping?

Hi all,


I'm trying to wrap my head around the following:

I have auto-generated reports for a specific topic. These files are generated each 15 minutes, and I want to select the latest available file for each date to work with.

 

What I end up with is a table that looks like this...

ContentDate Modified
[Binary]2020-04-01-23-30-00
[Binary]2020-04-01-23-45-00
[Binary]2020-04-02-00-00-00
 ...
[Binary]2020-04-02-23-30-00
[Binary]2020-04-02-23-45-00
[Binary]2020-04-03-00-00-00
 ...
[Binary]2020-04-22-15-15-00
[Binary]2020-04-22-15-30-00

 

Now, how can I properly select (from this table) only the files which are the latest available per day?

Again, not meaning "only 23:45" but "only time per day"


Thanks!

1 ACCEPTED SOLUTION
danextian
Super User
Super User

Hi @_n_MarianLein ,
Are  you, by chance, connecting to a folder? If so, do the following:

 

  • Sort Date modified in descending order and wrap the resulting formula in Table.Buffer( <formula in power query>).
  • Select Date modified and go to Add Column>Date >Date Only.
  • Right-click the newly created  column and then select Remove Duplicates which should keep just the first item which is the latest date modified per date.









Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

View solution in original post

3 REPLIES 3
danextian
Super User
Super User

Hi @_n_MarianLein ,
Are  you, by chance, connecting to a folder? If so, do the following:

 

  • Sort Date modified in descending order and wrap the resulting formula in Table.Buffer( <formula in power query>).
  • Select Date modified and go to Add Column>Date >Date Only.
  • Right-click the newly created  column and then select Remove Duplicates which should keep just the first item which is the latest date modified per date.









Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Thanks, @danextian - that worked and was way less complicated than I anticipated.

dax
Community Support
Community Support

Hi @_n_MarianLein , 

It seems that you want to get the last datettime of each day, right? If so, you could refer to below M code to see whether it work or not

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WinbKzEssqoxV0lEyMjAy0DUw0TUw1DUy1jUGsg2UYnXwKDExxafECCgJQXiUELTIiLBFxgQtMjLSNTQFIUJKoG6JBQA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Content = _t, #"Date Modified" = _t]),
    #"Split Column by Positions" = Table.SplitColumn(Source, "Date Modified", Splitter.SplitTextByPositions({0, 10, 11}), {"Date Modified - Copy.1", "Date Modified - Copy.2", "Date Modified - Copy.3"}),
    #"Replaced Value" = Table.ReplaceValue(#"Split Column by Positions","-","T",Replacer.ReplaceText,{"Date Modified - Copy.2"}),
    #"Replaced Value1" = Table.ReplaceValue(#"Replaced Value","-",":",Replacer.ReplaceText,{"Date Modified - Copy.3"}),
    #"Merged Columns" = Table.CombineColumns(#"Replaced Value1",{"Date Modified - Copy.1", "Date Modified - Copy.2", "Date Modified - Copy.3"},Combiner.CombineTextByDelimiter("", QuoteStyle.None),"Merged"),
    #"Changed Type" = Table.TransformColumnTypes(#"Merged Columns",{{"Merged", type datetime}}),
    #"Sorted Rows" = Table.Sort(#"Changed Type",{{"Merged", Order.Descending}}),
    #"Added Custom" = Table.AddColumn(#"Sorted Rows", "DATE", each DateTime.Date([Merged])),
    #"Grouped Rows" = Table.Group(#"Added Custom", {"DATE"}, {{"ALL", each _, type table [Content=text, Merged=datetime, DATE=date]}}),
    #"Added Custom1" = Table.AddColumn(#"Grouped Rows", "Custom", each Table.AddIndexColumn([ALL], "index",1,1)),
    #"Expanded Custom" = Table.ExpandTableColumn(#"Added Custom1", "Custom", {"Content", "Merged", "index"}, {"Content", "Merged", "index"}),
    #"Removed Columns" = Table.RemoveColumns(#"Expanded Custom",{"ALL"}),
    #"Filtered Rows" = Table.SelectRows(#"Removed Columns", each ([index] = 1))
in
    #"Filtered Rows"

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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