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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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?
Solved! Go to Solution.
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.
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.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 103 | |
| 80 | |
| 62 | |
| 51 | |
| 45 |