Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Solved! Go to Solution.
@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
@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
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
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 104 | |
| 81 | |
| 66 | |
| 50 | |
| 45 |