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.
Here's a strange thing:
This is my formula for the Year-week of the most recent order from the clients:
However, just today I found that it became like this:
When I tried to debug and changed the return to --isblank(most_recent_week), I found it's like this:
Why??? Why does it have all the values and then shows as blank??
Hi @Anonymous
In your formula , when [most_recent_week] is null , return “” , so you need check the value of [most_recent_week] . If you still have doubts , you can provide your pbix file to us, it will help us to deal with your problem easier .
Best Regard
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , just try this
calculate(MAXX(allselected(Sales),Sales[Year_Week]))
if you need data of max week use this in visual level filter or
create measure like
var _max = calculate(MAXX(allselected(Sales),Sales[Year_Week]))
return
calculate(sum(Sales[AMount]), filter(Sales, Sales[Year_Week] =_max) )
If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Hi,
Thanks for your response. It doesn't work and give me this:
It's year-week because var_max is what i wanted to return
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 |
---|---|
14 | |
11 | |
10 | |
10 | |
10 |
User | Count |
---|---|
18 | |
13 | |
12 | |
11 | |
8 |