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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
cosmicyes
Helper II
Helper II

Filter in PowerQuery dates <= today

I need to filter a table in PowerQuery for dates <= today.
As I have learned already this cannot be done within a wizard or so but must be done in M-Code.
I already have seen this thread:

Solved: Power Query Current Date Filter - Microsoft Power BI Community

This seemed to be the solution

let    
    #"Gefilterte Zeilen1" = Table.SelectRows(#"Gefilterte Zeilen", each [Nächster Termin] <= DateTime.LocalNow())
in
    #"Gefilterte Zeilen1"

 

but then I get this error message:

cosmicyes_0-1662023777480.png

Sorry - this is German.
But it is saying that < cannot be used for DateTime and Date.

 

What can I do?

 

1 ACCEPTED SOLUTION
KT_Bsmart2gethe
Impactful Individual
Impactful Individual

Hi @cosmicyes ,

 

The data format are different. DateTime.LocalNow() return DateTime where your column data type is Date.

 

You can define the column to datetime before you apply filter to rows; or you can date Date.From() Date.From(DateTime.LocalNow())

 

Regards

KT

View solution in original post

2 REPLIES 2
KT_Bsmart2gethe
Impactful Individual
Impactful Individual

Hi @cosmicyes ,

 

The data format are different. DateTime.LocalNow() return DateTime where your column data type is Date.

 

You can define the column to datetime before you apply filter to rows; or you can date Date.From() Date.From(DateTime.LocalNow())

 

Regards

KT

Hi @KT_Bsmart2gethe 

 

Life can be so easy if you know what you are doing 🙂
Worked - thanks a lot!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors