Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi Guys ,
I need your help in something ,
This is my dataset :
As You can see I added a calculated column that will calculate the Max Handled Timestamp for each Ticket Id.
There is one thing I cannot figure out is that when I try to exclude the Max Date:
After Excluding the row with the max date I would like to get the next availible max date that is: 08/06/2017 06:09:29
but it still stays the excluded one:
I Hope I explained myself clearly.
Here is the calculation of MaxDate - Calculated column:
Max Date =
CALCULATE(
MAX(Page2[Handled Timestamp]),
FILTER(ALLSELECTED(Page2), Page2[Ticket ID]=EARLIER(Page2[Ticket ID]))
)
-It is only one table
- I belive it is related to the issue that it is a calculated column and not a meause.
Thanks for your help.
Solved! Go to Solution.
@ShmuelM,
Create a measure using DAX below.
MaxDateMeasure = CALCULATE(MAX(Page2[Handled Timestamp]),ALLSELECTED(Page2[Handled Timestamp]))
Regards,
@Anonymous Great! That works thanks!
@ShmuelM,
Create a measure using DAX below.
MaxDateMeasure = CALCULATE(MAX(Page2[Handled Timestamp]),ALLSELECTED(Page2[Handled Timestamp]))
Regards,
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 104 | |
| 82 | |
| 72 | |
| 46 | |
| 35 |