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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply

Filter Date Column

I am looking to filter my data and display data for dates that are greater than of equal to 3 months prior (starting the first day of the month) or equal today.  I'm not sure if the power query supports this filter.  Should this be done on the in advance editor? 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @istduncan-cohp 

 

You can click the fx beside the formula bar above the table to add a custom step, then paste the following code in the formula bar. Replace "previous step" accordingly. 

= Table.SelectRows(#"previous step", each Date.IsInPreviousNMonths([Date], 3) or (Date.IsInCurrentMonth([Date]) and [Date] <= DateTime.Date(DateTime.LocalNow())))

vjingzhanmsft_0-1710470849952.png

Another code

= Table.SelectRows(#"previous step", each [Date] >= Date.StartOfMonth(Date.AddMonths(DateTime.Date(DateTime.LocalNow()),-3)) and [Date] <= DateTime.Date(DateTime.LocalNow()))

 

Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @istduncan-cohp 

 

You can click the fx beside the formula bar above the table to add a custom step, then paste the following code in the formula bar. Replace "previous step" accordingly. 

= Table.SelectRows(#"previous step", each Date.IsInPreviousNMonths([Date], 3) or (Date.IsInCurrentMonth([Date]) and [Date] <= DateTime.Date(DateTime.LocalNow())))

vjingzhanmsft_0-1710470849952.png

Another code

= Table.SelectRows(#"previous step", each [Date] >= Date.StartOfMonth(Date.AddMonths(DateTime.Date(DateTime.LocalNow()),-3)) and [Date] <= DateTime.Date(DateTime.LocalNow()))

 

Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.