Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello,
Could anyone help me to fix an issue how to set query in order to get records between specific date time range? I need to change range dynamically:
start of range: (currentYear, currentMonth, currentDay - 1, 6,0,0)
end of range:(currentYear, currentMonth, currentDay, 6,0,0)
At pic is only end filteration range. How is it possible to modify this query in orrder I could use dynamic variables in query?
I tried this but it didn't work:
= Table.SelectRows(#"Renamed Columns", each [Created] <= #datetime(YEAR(TODAY()),MONTH(TODAY()),DAY(TODAY()),6,0,0))
RB,
MWD
Solved! Go to Solution.
@MWD,
You may refer to the code below.
#"Filtered Rows" = Table.SelectRows(#"Renamed Columns", each [Created] > DateTime.From(DateTime.Date(DateTime.LocalNow())) + #duration(-1,6,0,0) and [Created] <= DateTime.From(DateTime.Date(DateTime.LocalNow())) + #duration(0,6,0,0))
@MWD,
You may refer to the code below.
#"Filtered Rows" = Table.SelectRows(#"Renamed Columns", each [Created] > DateTime.From(DateTime.Date(DateTime.LocalNow())) + #duration(-1,6,0,0) and [Created] <= DateTime.From(DateTime.Date(DateTime.LocalNow())) + #duration(0,6,0,0))
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 54 | |
| 39 | |
| 16 | |
| 14 |
| User | Count |
|---|---|
| 98 | |
| 84 | |
| 35 | |
| 30 | |
| 25 |