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
TobyYoung1
New Member

Date.IsInNWeeks

Is there a way to get all data in N weeks time from one column?

 

I have found Date.IsInNextNWeeks, however if I want the week after next (Next 2 weeks) I also get the next week. Which I don't want.

 

Filtering by the next N weeks then deleting all weeks up to N will be fine, but I'm not sure how to do it if its possible.

 

If anything needs clarifying please don't hesiate to ask, thanks in advance.

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

Your filter condition could be

Date.IsInNextNWeeks([DateCol], N) and not Date.IsInNextNWeeks([DateCol], N-1)

 

Alternatively, you could shift the date and check if it's in the next 1 week:

Date.IsInNextNWeeks(Date.AddWeeks([DateCol], N-1), 1)

View solution in original post

1 REPLY 1
AlexisOlson
Super User
Super User

Your filter condition could be

Date.IsInNextNWeeks([DateCol], N) and not Date.IsInNextNWeeks([DateCol], N-1)

 

Alternatively, you could shift the date and check if it's in the next 1 week:

Date.IsInNextNWeeks(Date.AddWeeks([DateCol], N-1), 1)

Helpful resources

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

February Power BI Update Carousel

Power BI Monthly Update - February 2026

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Users online (627)