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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Fiala
Helper II
Helper II

count of free weekends

Hi, I have a table like this:

 

I need to count a number of free weekends. The correct result should be 2. 

 

Can you please help me? Thank you.

Fiala_0-1654626359902.png

 

1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @Fiala 

Try creating a measure as below. Note it is relatively complex; it would be simpler to add some columns to the table you have to simplify it.See it all at work in the attached file.

Weekends_Off = 
VAR auxT_ =
    GROUPBY (
        ADDCOLUMNS (
            CALCULATETABLE (
                DISTINCT ( Table1[Date] ),
                Table1[Workday] = "Weekend",
                Table1[Shift] = "Dayoff"
            ),
            "@WeekNum", WEEKNUM ( [Date], 2 ) & "_" & YEAR( [Date] )
        ),
        [@WeekNum],
        "@Res", COUNTX ( CURRENTGROUP (), 1 )
    )
RETURN
    COUNTROWS ( FILTER ( auxT_, [@Res] = 2 ) )

 

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

View solution in original post

1 REPLY 1
AlB
Super User
Super User

Hi @Fiala 

Try creating a measure as below. Note it is relatively complex; it would be simpler to add some columns to the table you have to simplify it.See it all at work in the attached file.

Weekends_Off = 
VAR auxT_ =
    GROUPBY (
        ADDCOLUMNS (
            CALCULATETABLE (
                DISTINCT ( Table1[Date] ),
                Table1[Workday] = "Weekend",
                Table1[Shift] = "Dayoff"
            ),
            "@WeekNum", WEEKNUM ( [Date], 2 ) & "_" & YEAR( [Date] )
        ),
        [@WeekNum],
        "@Res", COUNTX ( CURRENTGROUP (), 1 )
    )
RETURN
    COUNTROWS ( FILTER ( auxT_, [@Res] = 2 ) )

 

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.