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 dateJoin 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.
Solved! Go to Solution.
Hi @Anonymous,
For your logic, you could try this measure below.
currency = VAR maxdate = CALCULATE ( MAX ( 'Table1'[DATE] ), ALLEXCEPT ( Table1, Table1[ID] ) ) RETURN CALCULATE ( MAX ( 'Table1'[Status] ), FILTER ( 'Table1', 'Table1'[date] = maxdate ) )
In addition, it seems that your desired output is like a matrix in Power BI.
However, I'm afraid that we may not achieve that the same output like your desired output in Power BI.
The most we can achieve is like below.
You also could have a reference of the attachment.
Best Regards,
Cherry
@Anonymous
Please see if this is what you want. Thanks.
Table = FILTER(SUMMARIZE(Sheet26,Sheet26[ID],Sheet26[STATUS],"MAXDATE",MAX('Sheet26'[DATE])),Sheet26[STATUS]="##")
Proud to be a Super User!
That is very close ryan!! You are a star for deciphering this.
I have:
I want (columns 1-5 are teh status, and the last column is the current status):
@Anonymous
Is this ok for your?
testtable = SUMMARIZE(Sheet26,Sheet26[ID],Sheet26[STATUS],"MAXDATE",CALCULATE(MAX('Sheet26'[DATE]),ALLEXCEPT(Sheet26,Sheet26[ID],Sheet26[STATUS])))
Proud to be a Super User!
Yes, the table on the right is the one that I want to make.
As a standalone table, as further calculations will be performed on that table
Hi @Anonymous,
For your logic, you could try this measure below.
currency = VAR maxdate = CALCULATE ( MAX ( 'Table1'[DATE] ), ALLEXCEPT ( Table1, Table1[ID] ) ) RETURN CALCULATE ( MAX ( 'Table1'[Status] ), FILTER ( 'Table1', 'Table1'[date] = maxdate ) )
In addition, it seems that your desired output is like a matrix in Power BI.
However, I'm afraid that we may not achieve that the same output like your desired output in Power BI.
The most we can achieve is like below.
You also could have a reference of the attachment.
Best Regards,
Cherry
The table you made in the visual on the right is the final table I want to generate via DAX calculation, as computations will be performed on that.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
61 | |
61 | |
55 | |
38 | |
27 |
User | Count |
---|---|
85 | |
60 | |
45 | |
41 | |
39 |