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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! 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
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 33 | |
| 29 |
| User | Count |
|---|---|
| 134 | |
| 96 | |
| 78 | |
| 67 | |
| 65 |