Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I am building a dashboard which shows the schedule of some equipment
The raw data comes in this format:
As part of the dashboard, I created this matrix below which shows the type of unit, and when it is next booked.
The NEXT DATE measure = min(date). Which basically shows the user the next date the equipment is booked. I also want to show the base where it is booked next. Basically looking up the Base column from the NEXT DATE measure. Does anybody know how to do this? I am at a bit of a dead end unfortunately because I can't figure out a way to lookup to another column on the same table.
If it helps, there is always one line per unit per day
Solved! Go to Solution.
Hi @davidoz
please try
=
VAR NextDate = [Next Date]
RETURN
MAXX ( FILTER ( TableName, TableName[Date] = NextDate ), TableName[Base] )
Hi @davidoz
please try
=
VAR NextDate = [Next Date]
RETURN
MAXX ( FILTER ( TableName, TableName[Date] = NextDate ), TableName[Base] )
thank you! this worked great!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
104 | |
69 | |
49 | |
41 | |
34 |
User | Count |
---|---|
164 | |
111 | |
61 | |
53 | |
38 |