The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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?
Solved! Go to 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.
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.
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.
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.
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.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
18 | |
18 | |
17 | |
15 | |
13 |
User | Count |
---|---|
36 | |
34 | |
19 | |
18 | |
16 |