Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have a date slicer aswell
My requirement is to get the max of date for every name when slicer is selected aswell.
I was able to get the max of date without slicer but when slicer is selected my logic is not working
CALCULATE(MAX(Orders[Date]), ALLEXCEPT(Orders,Orders[Name]))
but this logic not working when date slicer is active.
I need as below
a 10/1/2023 b 8/28/2023 c 6/15/2023
if slicer is selected for 9/30/2023, I need as below
a 9/1/2023 b 8/28/2023 c 6/15/2023
Any help is appretiated
@ask_kumar , Try a measure like
calculate( max(Orders[Date]), filter(all(Orders), Orders[Name] = max(Orders[Name])))
or
calculate(lastnonblankvalue(Orders[Date], max(Orders[Date])), filter(all(Orders), Orders[Name] = max(Orders[Name])))
User | Count |
---|---|
77 | |
74 | |
42 | |
32 | |
28 |
User | Count |
---|---|
100 | |
93 | |
52 | |
50 | |
48 |