Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Solved! Go to Solution.
Hi @Josearce
Create three calculated columns as below
year = YEAR([date])
weeknum = WEEKNUM([date],2)
date custom =
CONCATENATE (
CONCATENATE (
FORMAT (
CALCULATE (
MIN ( [date] ),
ALLEXCEPT ( Sheet8, Sheet8[year], Sheet8[weeknum] )
),
"m/dd"
),
"-"
),
FORMAT (
CALCULATE (
MAX ( [date] ),
ALLEXCEPT ( Sheet8, Sheet8[year], Sheet8[weeknum] )
),
"m/dd"
)
)
Best Reagrds
Maggie
Hi @Josearce
Create three calculated columns as below
year = YEAR([date])
weeknum = WEEKNUM([date],2)
date custom =
CONCATENATE (
CONCATENATE (
FORMAT (
CALCULATE (
MIN ( [date] ),
ALLEXCEPT ( Sheet8, Sheet8[year], Sheet8[weeknum] )
),
"m/dd"
),
"-"
),
FORMAT (
CALCULATE (
MAX ( [date] ),
ALLEXCEPT ( Sheet8, Sheet8[year], Sheet8[weeknum] )
),
"m/dd"
)
)
Best Reagrds
Maggie
Thanks Maggie...I did something with the formula to present it more organized:
Weekfromto =
VAR Desde = format(Calculate(min('Calendar Table'[Date]),ALLEXCEPT('Calendar Table','Calendar Table'[Year],'Calendar Table'[Week#])),"mmm-dd-yy")
VAR Hasta = format(Calculate(max('Calendar Table'[Date]),ALLEXCEPT('Calendar Table','Calendar Table'[Year],'Calendar Table'[Week#])),"mmm-dd-yy")
RETURN
Desde &" - "& Hasta
Desde means From and Hasta means Through
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 27 | |
| 23 | |
| 18 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 54 | |
| 44 | |
| 42 | |
| 39 | |
| 33 |