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!View all the Fabric Data Days sessions on demand. View schedule
Can anyone help with this?
I'm trying to calculate the fiscal week, but getting duplicates.
Fiscal Week Num =
VAR _FiscalWeekStart = 27
RETURN
IF (
NickDimDate[Week] >= _FiscalWeekStart,
( NickDimDate[Week] ) - ( _FiscalWeekStart - 1 ),
52 + ( NickDimDate[Week] ) - ( _FiscalWeekStart - 1 )
)
Your DAX seems ok
First row = 52 + 1 - 27 + 1 = 27
Second Row = 53 - 27 + 1 = 27
So its not your DAX that isnt working but it seems the formula you are using isnt doing what you expect.
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!