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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Filtering a specific date by NOW

Hello,

 

I need to filter a date by NOW function, for exemple dat_registrer < NOW ().

 

Below I am filtering a specific date, I need to replace with NOW:

= Table.SelectRows(#"Filtered Lines1", each [dat_registrer] < #datetime(2022, 10, 11, 0, 0, 0))

 

How i do that?

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

Hi @Anonymous ,

 

According to your description, here is my soluton.

Please try

= Table.SelectRows(#"Filtered Lines1", each [dat_registrer] < DateTime.FixedLocalNow())

This will return a datetime value set to the current date and time on the system.

 

Please refer to the following documents.

DateTime.FixedLocalNow - PowerQuery M | Microsoft Learn

DateTime.LocalNow - PowerQuery M | Microsoft Learn

 

Best Regards,
Community Support Team _ xiaosun

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-xiaosun-msft
Community Support
Community Support

Hi @Anonymous ,

 

According to your description, here is my soluton.

Please try

= Table.SelectRows(#"Filtered Lines1", each [dat_registrer] < DateTime.FixedLocalNow())

This will return a datetime value set to the current date and time on the system.

 

Please refer to the following documents.

DateTime.FixedLocalNow - PowerQuery M | Microsoft Learn

DateTime.LocalNow - PowerQuery M | Microsoft Learn

 

Best Regards,
Community Support Team _ xiaosun

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

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors