Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Dear all,
I need your help on my DAX
I write a measure:
----
Total persons =
Var
Total = CALCULATE(
SUM('data'[value]),
'data'[Date]=MAX('data'[Date]))
return
if(Total>4, Total, "< 5")
------
'data'[Date] has 4 dates:
4. mars 2024
11. mars 2024
18. mars 2024
14. mai 2024
10. juni 2024
My problem is the measure choose " 4. mars 2024" for calculation , not "10. juni 2024" as I want! Can you help my to clarify what is problem with my measure ?
Thank you!
Hi @HaiVN ,
I am looking forward to your feedback if there is any update.
Please remember to update this thread if you have any progress.
Thank you for your understanding.
Best regards,
Joyce
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @HaiVN , aduguid, thank you for your prompt reply!
This works on my sample data according to my tests, please upload your pbix file for further testing if possible.
Best regards,
Joyce
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Try this measure
Total persons =
VAR MaxDate = MAXX(ALL('data'[Date]), 'data'[Date])
VAR Total = CALCULATE(
SUM('data'[value]),
'data'[Date] = MaxDate
)
RETURN
IF(Total > 4, Total, "< 5")
@aduguid Thanks for your help, but it does not work when I try the measure as you suggest.
When I try to show the maxdate only i a card , ut shows correct. But when it is i the measure, it does not works
User | Count |
---|---|
15 | |
13 | |
12 | |
10 | |
10 |
User | Count |
---|---|
19 | |
15 | |
14 | |
11 | |
10 |