cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply

Last saturday Value.

Hi everyone. 

i need a measure that return

the last satruday value. Just the value for the saturady.  

last saturday not the current Saturday. 

how can i do it with dax? 

1 ACCEPTED SOLUTION

Sorry that I cannot understand what dates are in the current week.

Instead of I create a sample pbix file by assuming your data model, which is not matching with yours, share your sample pbix file's link with how your expected outcome of the visualization looks like, and it will be much more clear how to provide a solution.

Thanks.

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

5 REPLIES 5
Jihwan_Kim
Super User
Super User

Hi,

I am not sure how your expected outcome of a visualization looks like, but please check the below picture and the attached pbix file.

I tried to create a sample pbix file like below.

I suggest having a dim-calendar table like below.

 

 

Untitled.png

 

Last Saturday QTY: =
VAR _currentdate =
    MAX ( 'Calendar'[Date] )
VAR _lastsaturdaydate =
    MAXX (
        FILTER (
            ALL ( 'Calendar' ),
            'Calendar'[Date] < _currentdate
                && 'Calendar'[Day Name] = "Saturday"
        ),
        'Calendar'[Date]
    )
RETURN
    IF (
        HASONEVALUE ( 'Calendar'[Date] ),
        CALCULATE ( [QTY total:], 'Calendar'[Date] = _lastsaturdaydate )
    )

 

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


This is amazing. 

i will use Card chart. I just need the last week value. One value. 

can you help with that? 

Hi,

Thank you for your feedback.

Do you mean last week saturday of today?

Please check the measure below. You can try to change VAR _currentdate.

 

Last Saturday QTY of TODAY: = 
VAR _currentdate =
    TODAY()-1
VAR _lastsaturdaydate =
    MAXX (
        FILTER (
            ALL ( 'Calendar' ),
            'Calendar'[Date] < _currentdate
                && 'Calendar'[Day Name] = "Saturday"
        ),
        'Calendar'[Date]
    )
RETURN
    IF (
        HASONEVALUE ( 'Calendar'[Date] ),
        CALCULATE ( [QTY total:], 'Calendar'[Date] = _lastsaturdaydate )
    )

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


Last week Saturday of Current week. 

Thanks!  Much appreciated. 

Sorry that I cannot understand what dates are in the current week.

Instead of I create a sample pbix file by assuming your data model, which is not matching with yours, share your sample pbix file's link with how your expected outcome of the visualization looks like, and it will be much more clear how to provide a solution.

Thanks.

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


Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors