Reply
avatar user
Anonymous
Not applicable

Grouping dates into fortnights

Hi everyone,

 

I'm looking for a solution that will help in grouping dates into fortnights, irregardless of month or year. I'll attach an image to help understand what I am meaning.

 

It wouldn't matter if the column started at calendar start or a specific date.

 

The date table I have is just an invoked funtion in M.

 

Hopefully someone can help, I'm not sure what other information I could provide that would be helpful here.

 

Dates for CN.jpg

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

I'm thinking:

 

Fortnight = 
  VAR __BaseDate = DATE(2019,1,1)
  VAR __Days = ([Value].[Date] - __BaseDate) * 1.
RETURN
  INT(__Days/20) + 1

 

Attached PBIX. 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Super User
Super User

I'm thinking:

 

Fortnight = 
  VAR __BaseDate = DATE(2019,1,1)
  VAR __Days = ([Value].[Date] - __BaseDate) * 1.
RETURN
  INT(__Days/20) + 1

 

Attached PBIX. 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler , absolute genius, but instead of the number how can i get actual date of the fortnight

avatar user

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)