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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
bourne2000
Helper V
Helper V

How to make fornight calculation in date table?

Hi

 

I have a date table, and would like to calculate fornight

 

Expected output

 

DateFornight
1/01/2022Jan 1 - 15
2/01/2022Jan 1 - 15
3/01/2022Jan 1 - 15
4/01/2022Jan 1 - 15
5/01/2022Jan 1 - 15
6/01/2022Jan 1 - 15
7/01/2022Jan 1 - 15
8/01/2022Jan 1 - 15
9/01/2022Jan 1 - 15
10/01/2022Jan 1 - 15
11/01/2022Jan 1 - 15
12/01/2022Jan 1 - 15
13/01/2022Jan 1 - 15
14/01/2022Jan 1 - 15
15/01/2022Jan 1 - 15
16/01/2022Jan 16 - 31
17/01/2022Jan 16 - 31
18/01/2022Jan 16 - 31
19/01/2022Jan 16 - 31
20/01/2022Jan 16 - 31
21/01/2022Jan 16 - 31
22/01/2022Jan 16 - 31
23/01/2022Jan 16 - 31
24/01/2022Jan 16 - 31
25/01/2022Jan 16 - 31
26/01/2022Jan 16 - 31
27/01/2022Jan 16 - 31
28/01/2022Jan 16 - 31
29/01/2022Jan 16 - 31
30/01/2022Jan 16 - 31
31/01/2022Jan 16 - 31
1/02/2022Feb 1 - 15
2/02/2022Feb 1 - 15
3/02/2022Feb 1 - 15
4/02/2022Feb 1 - 15
5/02/2022Feb 1 - 15
6/02/2022Feb 1 - 15
7/02/2022Feb 1 - 15
8/02/2022Feb 1 - 15
9/02/2022Feb 1 - 15
10/02/2022Feb 1 - 15
11/02/2022Feb 1 - 15
12/02/2022Feb 1 - 15
13/02/2022Feb 1 - 15
14/02/2022Feb 1 - 15
15/02/2022Feb 1 - 15
16/02/2022Feb 2 - 28
17/02/2022Feb 2 - 28
18/02/2022Feb 2 - 28
19/02/2022Feb 2 - 28
20/02/2022Feb 2 - 28
21/02/2022Feb 2 - 28
22/02/2022Feb 2 - 28
23/02/2022Feb 2 - 28
24/02/2022Feb 2 - 28
25/02/2022Feb 2 - 28
26/02/2022Feb 2 - 28
27/02/2022Feb 2 - 28
28/02/2022Feb 2 - 28
1/03/2022Mar 1 - 15

 

I have day number in my date table and used below dax to create a new column 

 

 

fortnight = IF( Date[DayNo] <= 15, "Fortnight-1", "Fornight-2")

 

 

The above dax works to seperate the fornights. However, I am not able to get the above output like Jan 1-15, Jan 16-31 etc

 

Can anyone advise how to do this? I created date table using M query

 

 

1 ACCEPTED SOLUTION
kunal15sep
Frequent Visitor

fortnight =
var lastdayinMonth= ENDOFMONTH('Date'[Date])


return
if(DAY([Date])<=15, 'Date'[Month] & " 1-15",'Date'[Month]& " 16-" & day(lastdayinMonth))

View solution in original post

2 REPLIES 2
kunal15sep
Frequent Visitor

Using "Month" as a sepearate column FORMAT([Date],"mmm")
kunal15sep
Frequent Visitor

fortnight =
var lastdayinMonth= ENDOFMONTH('Date'[Date])


return
if(DAY([Date])<=15, 'Date'[Month] & " 1-15",'Date'[Month]& " 16-" & day(lastdayinMonth))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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