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

The Same week LY

Hi guys,
Can someone help Modify this DAX query

Iklizo_0-1655325913052.png

 

8 REPLIES 8
v-chenwuz-msft
Community Support
Community Support

Hi @Anonymous ,

 

The result of SELECTEDVALUE('Calendar'[Fiscal Year]) is blank due to you only have one field in this table, so the countrows( values( 'Calendar'[Fiscal Year]) >1 of each rows when you do not do some filter outside the table visual.

 

Or the selectedvalue( 'Calendar'[Fiscal week number]) is blank.

 

If im wrong, please let me know and share your pbix file without sensitive data.

 

Best Regards

Community Support Team _ chenwu zhu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

vapid128
Solution Specialist
Solution Specialist

I never use the function like your function, so I tried yours, and it works.

 

my function :

 

weekly Sales LY = 
var maxYear = max('Calendar'[Fiscal Year])
var maxWeekNumber = max('Calendar'[Fiscal_week_number])

return 
CALCULATE(
    [sales],
    filter(ALL('Calender'),
        'Calendar'[Fiscal Year] = maxYear - 1 &&
        'Calendar'[Fiscal_week_number] = maxWeekNumber 
    )
)
Anonymous
Not applicable

@vapid128  Still return blank. 

show me your sales function and relationship between tables

Anonymous
Not applicable

@vapid128  My current works perfectly. 

Weekly Sales CY =
CALCULATE(
[sales],
FILTER(ALL('Calendar'),
'Calendar'[Fiscal Year] = SELECTEDVALUE('Calendar'[Fiscal Year]) &&
VALUE('Calendar'[Fiscal Week])= Value(SELECTEDVALUE('Calendar'[Fiscal Week]))))

I mean [sales]

vapid128
Solution Specialist
Solution Specialist

I tested your way, it should be work.

vapid128_0-1655334153067.png

 

Anonymous
Not applicable

@vapid128  Still not working for Weekly Sales LY. Do you have know another method?

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