Any power query heroes here? I've only ever touched the Excel transform data wizard and not needed to go under the hood as it were when pulling in data. However, this time I need to pull in data just for the previous 90 days as the dataset is extremely large.
The table contains various timestamp columns which I want to filter on but how you plug that into PQ I've no idea.
When viewing the advanced connection query, it is nothing more complex than:
I understand PQ accepts now(); so was trying to fathom how I then plug in the relevant code to return only rows in the last 90 days, i.e. where timestamp_column between now() and now()-90 or somesuch.
*scratch head*
The table contains various timestamp columns which I want to filter on but how you plug that into PQ I've no idea.
When viewing the advanced connection query, it is nothing more complex than:
Code:
let
Source = OData.Feed("http://hostname/Data", null, [Implementation="2.0"]),
Connections_table = Source{[Name="Connections",Signature="table"]}[Data]
in
Connections_table
*scratch head*