Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
we are trying to find the LoanAmount value on the latestAppDate. If we use filter to select IsApproved = 'Yes' then table contains 2 rows with AppDate as 01-Jun and 03-Jun in this case i need Loanamount as 110(latest is 03-Jun) similarly, if i select filter IsApproved = 'No', we expect LoanAmount value as 90. Appreciate your help on this.
Solved! Go to Solution.
You could create a VAR that does something like:
Measure =
VAR __maxDate = MAX('Table'[AppDate])
RETURN ...For the RETURN portion, you would use your __maxDate in a FILTER or something similar like:
Measure =
VAR __maxDate = MAX('Table'[AppDate])
RETURN SUMX(FILTER('Table',[AppDate]=__maxDate),[Loanamount])
You could create a VAR that does something like:
Measure =
VAR __maxDate = MAX('Table'[AppDate])
RETURN ...For the RETURN portion, you would use your __maxDate in a FILTER or something similar like:
Measure =
VAR __maxDate = MAX('Table'[AppDate])
RETURN SUMX(FILTER('Table',[AppDate]=__maxDate),[Loanamount])
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |