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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
user35131
Helper III
Helper III

Get Max date by group but from variable table

Normally i would this code

 

 

Max Date =
CALCULATE (
    LASTDATE ( Table[Date] ),
    ALLEXCEPT (
        Table,
        Table[ID],
        Table[Col2]
    )
)

 

 

Var= threein1

 

VAR MAX_ =
SUMMARIZE(Table,[id],[Col2],"MAX DATE",LASTDATE(threein1))


Return MAX_

 

 

 

 

However I am working off of a variable so when  i try to do this in lastdate function I can't reference the column from the created variable.

 

 

5 REPLIES 5
v-yalanwu-msft
Community Support
Community Support

Hi, @user35131 ;

First SUMMARIZE() is to return a table, and here you are returning a measure:
Try it:

 

measure =
MAXX (
    SUMMARIZE ( Table, [id], [Col2], "MAX DATE", LASTDATE ( threein1 ) ),
    [MAX DATE]
)

 If not, can you share a simple example and the desired output? The daX alone cannot fully determine the cause. and the threein1 is measure ?


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

user35131
Helper III
Helper III

A measure i created outside did not get accepted when trying to input. 

Fowmy
Super User
Super User

@user35131 

If you assign a value to a variable, it becomes a constant and any changes in the context will not affect it. In this case, you need to substitute the actual calculation for the variable.  


Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

isn't that what i'm trying to do. The calculation does not give me a result. 

@user35131 

Var= threein1

VAR MAX_ =

SUMMARIZE(Table,[id],[Col2],"MAX DATE", "------No Variable/Enter Actual Measure------" )
Return MAX_

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.