Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Normally i would this code
Max Date =
CALCULATE (
LASTDATE ( Table[Date] ),
ALLEXCEPT (
Table,
Table[ID],
Table[Col2]
)
)
Var= threein1
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.
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.
A measure i created outside did not get accepted when trying to input.
@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.
⭕ 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.
Var= threein1
VAR MAX_ =
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
59 | |
54 | |
54 | |
36 | |
33 |
User | Count |
---|---|
81 | |
73 | |
45 | |
45 | |
43 |