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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
bmk
Helper II
Helper II

Return Max Week number based on number of days

Below image is two columns from a Date table, it shows Week number and Date.

 

How do I return the max week number for the last period with 7 days?

For example, the week number that should be returned from the below scenario is week 34.

bmk_0-1661977058425.png

 

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

First of all, thank you for your message via Linkedin.

I justed checked the message, and please check the below measure and the attached pbix file.

I tried to create a sample pbix file like below, and I hope the below can provide some ideas on how to create a solution for your dataset.

 

Expected result measure: =
VAR _weektable =
    FILTER (
        ADDCOLUMNS (
            VALUES ( Data[Week of Year] ),
            "@dayscountinaweek", CALCULATE ( COUNTROWS ( Data ) )
        ),
        [@dayscountinaweek] = 7
    )
RETURN
    MAXX ( _weektable, Data[Week of Year] )

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

4 REPLIES 4
Jihwan_Kim
Super User
Super User

Hi,

First of all, thank you for your message via Linkedin.

I justed checked the message, and please check the below measure and the attached pbix file.

I tried to create a sample pbix file like below, and I hope the below can provide some ideas on how to create a solution for your dataset.

 

Expected result measure: =
VAR _weektable =
    FILTER (
        ADDCOLUMNS (
            VALUES ( Data[Week of Year] ),
            "@dayscountinaweek", CALCULATE ( COUNTROWS ( Data ) )
        ),
        [@dayscountinaweek] = 7
    )
RETURN
    MAXX ( _weektable, Data[Week of Year] )

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


bmk
Helper II
Helper II

The measure did not work. Also, noticed that when I use the measure, it filters the date range to the last 8 days (example, when a relative date of last 14 days is selected) only.

 

Measure : 

Measure = MAXX(FILTER('Date Table', 'Date Table'[Date] >= TODAY()-7 && 'Date Table'[Date] <= TODAY()), 'Date Table'[WeekNum])

As per image below, measure should still return 34. Since week 35 only has four days complete so far.

bmk_0-1662036825986.png

 

Hi @bmk ,

According to your description, You want to get the maximum Weeknum for the full week .Right?

(1)This is my test data:

yingyinr_0-1662344740621.png

 

(2)We can create a measure,then it can meet your need: Max_Weeknum

Max_Weeknum = MAXX( FILTER('Test', WEEKDAY('Test'[Date],2)=7 ) , 'Test'[Weeknum])

 

(3)The result is as follows:

yingyinr_1-1662344740622.png

If this method does not meet your needs, you can provide us your sample data without sensitive data, or detailed input and output sample data, so that we can better help for you.

 

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
Super User
Super User

@bmk ,  Try a measure like

Maxx(filter(Table, Table[Date] >= Today() -7  && Table[Date]  <= today()) , [Week])

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.