Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
PCHMarc67
Frequent Visitor

Last Date based on ID grouping in Table Dax Measure

Hello!  New to BI and this forum

I have a table with customer ID's and their last activity date.  I can drag this date field into a Card and set it to "latest" and by clicking on a visualization of customers this Card will change to the correct date.  Great!

 

But I cannot drag this same activity date field into a table visualization and choose "latest" -- it just duplicates every action record.

 

I've been trying to create a measure, thinking I need the GROUPBY and LASTDATE operators?

Last Move Date = (GROUPBY('22HC_2__ActionsDetails Q','22HC_2__ActionsDetails Q'[Constituent ID])),(LASTDATE('22HC_2__ActionsDetails Q'[Action Date].[Date])))    ... this doesn't work. I tried nesting it different ways
 
is there a way to see the DAX behind the working Card visualization -- that's all I need to reproduce
thanks!
Marc

 

 

1 ACCEPTED SOLUTION

Hi @PCHMarc67 ,

 

Maybe you can try this expression:

Measure =
CALCULATE (
    MAX ( 'Table'[Action Date] ),
    'Table'[Constituent ID] = SELECTEDVALUE ( 'Table'[Constituent ID] )
)

Then you need put the name field in the table firstly to group the table.

Result:

vchenwuzmsft_0-1650616763834.png

Pbix in the end you can refer.

Best Regards

Community Support Team _ chenwu zhu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
PCHMarc67
Frequent Visitor

Let me Clarify... this is what the source table looks like.  lots of rows repeating my people.  So I want to create a measure that would group by Constituent ID then return the last Action Date (10/8/2021)    thx

PCHMarc67_0-1650392999956.png

 

Hi @PCHMarc67 ,

 

Maybe you can try this expression:

Measure =
CALCULATE (
    MAX ( 'Table'[Action Date] ),
    'Table'[Constituent ID] = SELECTEDVALUE ( 'Table'[Constituent ID] )
)

Then you need put the name field in the table firstly to group the table.

Result:

vchenwuzmsft_0-1650616763834.png

Pbix in the end you can refer.

Best Regards

Community Support Team _ chenwu zhu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

This is perfect!  thank you

tackytechtom
Super User
Super User

Hi @PCHMarc67 ,

 

How about something like this :

MeasureGroupBy = 
CALCULATE (
    MAX ( 'YourTableName'[Date] ),
    ALLEXCEPT ( YourTableName, YourTableName[Customer] )
)


Let me know, if this helps 🙂

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/



Did I answer your question➡️ Please, mark my post as a solution ✔️

Also happily accepting Kudos 🙂

Feel free to connect with me on LinkedIn! linkedIn

#proudtobeasuperuser 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors