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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
polman4
Helper I
Helper I

Power Query - GA - Date (Yesterday)

Hello,

 

I have made a query with the google analytics connector that power bi desktop comes with. I'm using the following to filter the dates

 

#"Filtered Rows" = Table.SelectRows(#"Added Items", each [Date] >= #date(2022, 01, 01) and [Date] <= #date(2022, 02, 27)),

 

Ι would like to change the date to dynamically be tomorrow. I tried this but it won't work: 

 

#"Filtered Rows" = Table.SelectRows(#"Added Items", each [Date] >= #date(2022, 01, 01) and [Date] <= Date.AddDays(DateTime.LocalNow(),-1))

 

Any suggestion?

 

Thank you!

Grigoris

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@polman4 , for tomorrow it should be +1. Also convert it to date before adding days

 

#"Filtered Rows" = Table.SelectRows(#"Added Items", each [Date] >= #date(2022, 01, 01) and [Date] <= Date.AddDays(DateTime.Date(DateTime.LocalNow()),1))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
polman4
Helper I
Helper I

Thank you @amitchandak ! Worked great

 

If someone wants yesterday just "-1" instead of "1"

amitchandak
Super User
Super User

@polman4 , for tomorrow it should be +1. Also convert it to date before adding days

 

#"Filtered Rows" = Table.SelectRows(#"Added Items", each [Date] >= #date(2022, 01, 01) and [Date] <= Date.AddDays(DateTime.Date(DateTime.LocalNow()),1))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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