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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi All, My PBI reports are working just fine but the problem is, it's having performance issue in my actual pbi, loading takes too much of time. But in my mockup pbi it's working fine. i think this is due to long queries of the dax measures.
Two measure that's needing simplifications
1.
I need to apply the same logic from the mockup pbi to my actual pbi and it's having performance issues, and i believe this is due to the long dax queries.Hoping that someone can guide me on this, thank you!
Solved! Go to Solution.
Hi,
please try the below two measures whether those suit your dataset.
Application date measure: =
VAR _latestdate =
MAX ( Student[Application Date] )
RETURN
IF ( HASONEVALUE ( Student[Student ID] ), _latestdate )
Status expected measure: =
VAR _maxdate = [Application date measure:]
VAR _maxstatuskey =
CALCULATE (
MAX ( Student[Application Status Key] ),
Student[Application Date] = _maxdate
)
RETURN
IF (
HASONEVALUE ( Student[Student ID] ),
CALCULATETABLE (
VALUES ( 'Status'[Status] ),
'Status'[Application Status Key] = _maxstatuskey
)
)
Hi,
please try the below two measures whether those suit your dataset.
Application date measure: =
VAR _latestdate =
MAX ( Student[Application Date] )
RETURN
IF ( HASONEVALUE ( Student[Student ID] ), _latestdate )
Status expected measure: =
VAR _maxdate = [Application date measure:]
VAR _maxstatuskey =
CALCULATE (
MAX ( Student[Application Status Key] ),
Student[Application Date] = _maxdate
)
RETURN
IF (
HASONEVALUE ( Student[Student ID] ),
CALCULATETABLE (
VALUES ( 'Status'[Status] ),
'Status'[Application Status Key] = _maxstatuskey
)
)
Thank you Jihwan for the help!
@Anonymous , seem like you need to get the latest status. refer if my code in the blog can help
https://amitchandak.medium.com/power-bi-get-the-last-latest-value-of-a-category-d0cf2fcf92d0
Thank you for the guide sir
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 20 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 33 | |
| 31 | |
| 19 | |
| 12 | |
| 11 |