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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Measure for Fortnightly

Hi Team,

 

Don't know if someone has already did this. I need a measure for "Fortnightly calculation".

I have monthly and weekly but how to build the measure for "Fortnightly".

Need a measure for Fortnightly_Starting

1/06/2019

15/06/2019

22/06/2019 .....

Regards

Drake

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@Anonymous 

 

You may use the following DAX to add a calculated column.

Column =
VAR d =
    MIN ( 'Table'[Date] )
RETURN
    d
        + QUOTIENT ( DATEDIFF ( d, 'Table'[Date], DAY ), 14 ) * 14
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-chuncz-msft
Community Support
Community Support

@Anonymous 

 

You may use the following DAX to add a calculated column.

Column =
VAR d =
    MIN ( 'Table'[Date] )
RETURN
    d
        + QUOTIENT ( DATEDIFF ( d, 'Table'[Date], DAY ), 14 ) * 14
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

This works, but need one improvement. I need to start my week with sunday but here it is starting with the first date of my tables. If possible let me know else I have already submited the work and the team are happy.

 

Regards

Drake

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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