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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
MWD
Regular Visitor

Dynamic value in #datatime (QueryFilter)

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?

 

datetime_filter

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

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@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))
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.

View solution in original post

1 REPLY 1
v-chuncz-msft
Community Support
Community Support

@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))
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.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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