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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
sbolton1855
Frequent Visitor

Get data for the last X days including today

I am trying to get data for the past 7 days including today I have tried in the previous 7 days and selecting 'today' (see img) but the next day it does not dynamically change.  The reason I am using >= is because if I only use = it only brings back 'today' at that date but 12am.

also if I select past 7 days it does not include today....

 

Today the query is 

= Table.SelectRows(Source, each Date.IsInPreviousNDays([datetime], 7) or [datetime] >= #datetime(2022, 8, 29, 0, 0, 0))

 

sbolton1855_0-1661958198574.png

 

I have tried to use: 

= Table.SelectRows(Source, each Date.IsInPreviousNDays([datetime], 7) or [datetime] >= #datetime(DateTime.LocalNow()))

but that didnt work.  How can I dynammically change the date to be today and the previous 7 days.

 

1 REPLY 1
Vijay_A_Verma
Super User
Super User

Use

Date.IsInCurrentDay(Date.From([datetime]))

Hence use this

= Table.SelectRows(Source, each Date.IsInPreviousNDays([datetime], 7) or Date.IsInCurrentDay(Date.From([datetime])))

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

Top Solution Authors
Top Kudoed Authors