Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
11 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
12 | |
11 | |
11 | |
11 |