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 dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
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 |
---|---|
20 | |
7 | |
6 | |
5 | |
5 |
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |