Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi
I have a database that generates a new table every day.
The name on one of the table is.
cdr_ty_20160819_act
I would like to make a M script that loads today and the last 30 days.
How to do that in M.
Regards
Lars
Just to confirm, how many dataset (Queries) do you want to get in Query Editor, 31 tables or one consolidated table?
Best Regards,
Herbert
Hi
It would be great to have it in one consolidated table. But 31 tables will also do the job.
I have only read access to the SQL, so i can't do it on the SQL server.
Regards
Lars
Assuming we have some tables in SQL Server like below.
We can paste following Power Query into Advanced Editor.
let
Source = Sql.Databases("HERBERTSQL2016"),
cdr_ty = Source{[Name="cdr_ty"]}[Data],
#"Removed Columns" = Table.RemoveColumns(cdr_ty,{"Schema", "Item", "Kind"}),
#"Expanded Data" = Table.ExpandTableColumn(#"Removed Columns", "Data", {"ID", "Sales"}, {"Data.ID", "Data.Sales"}),
#"Inserted Text Range" = Table.AddColumn(#"Expanded Data", "Text Range", each Text.Middle([Name], 7, 8), type text),
#"Changed Type" = Table.TransformColumnTypes(#"Inserted Text Range",{{"Text Range", type date}}),
#"Filtered Rows" = Table.SelectRows(#"Changed Type", each Date.IsInPreviousNDays([Text Range], 2) or Date.IsInCurrentDay([Text Range]))
in
#"Filtered Rows"We can get one table with following format, which includes data of today and last two days.
Best Regards,
Herbert
Date.IsInPreviousNDays([Text Range], 2)
Can the day parameter "2" be set by a function or query?
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 41 | |
| 37 | |
| 34 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 59 | |
| 31 | |
| 26 | |
| 25 |