Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Values appearing but also showing as null, why???..

Here's a strange thing:

This is my formula for the Year-week of the most recent order from the clients:

Most Recent Order YearWeek =
var most_recent_week = calculate(MAX(Sales[Year_Week]))
return most_recent_week
 
The result is fine but it's ugly:
annexiao_0-1643080265335.png
Before it was fine - when I changed the formula to this:
Most Recent Order YearWeek =
var most_recent_week = calculate(MAX(Sales[Year_Week]))
return 
if(ISBLANK(most_recent_week),"",
left(most_recent_week,4)
&"-"
&right(most_recent_week,2))
 
Then it's much better looking:
annexiao_1-1643080328399.png

However, just today I found that it became like this: 

 

annexiao_2-1643080444718.png

When I tried to debug and changed the return to --isblank(most_recent_week), I found it's like this:

annexiao_3-1643080961497.png

Why??? Why does it have all the values and then shows as blank??

Can you help me figure out ?...
Thank you in advance!
4 REPLIES 4
v-yetao1-msft
Community Support
Community Support

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 .

Ailsamsft_0-1643248708884.png

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.

amitchandak
Super User
Super User

@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.

Anonymous
Not applicable

Hi, 

Thanks for your response. It doesn't work and give me this:

annexiao_0-1643081979526.png

 

It's year-week because var_max is what i wanted to return 

@Anonymous ,
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors