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

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
Josearce
Regular Visitor

Calendar

Can you do one of calendars and how to put from/to week. Example: I have a list of dates from 8/27 to 9/2 and on another column I need that for those dates says 8/27 - 9/2, can that be done?
1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

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"
    )
)

10.png

 

 

Best Reagrds

Maggie

View solution in original post

2 REPLIES 2
v-juanli-msft
Community Support
Community Support

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"
    )
)

10.png

 

 

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

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.