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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
SVM9698
Regular Visitor

DAX Time Intelligence Week

Hi All,

 

I have a question related to DAX on how to dynamicaly pass the filter selected value indide a measure. consider the below code

 

 

YTD Target v1 =

 

VAR DW = SWITCH(TRUE(),SELECTEDVALUE('Last Week Table'[Latest week])="Latest week",WEEKNUM(today(), 15)-3,

SELECTEDVALUE('Last Week Table'[Latest week])="37",WEEKNUM(today()-7, 15)-3,

SELECTEDVALUE('Last Week Table'[Latest week])="36",WEEKNUM(today()-14, 15)-3,

SELECTEDVALUE('Last Week Table'[Latest week])="35",WEEKNUM(today()-21, 15)-3,

SELECTEDVALUE('Last Week Table'[Latest week])="34",WEEKNUM(today()-28, 15)-3,

SELECTEDVALUE('Last Week Table'[Latest week])="33",WEEKNUM(today()-35, 15)-3)

 

Return

IF(

SELECTEDVALUE([Product Group]) = "CC",

sum([Measure]),

 

if(SELECTEDVALUE([channel]) = "HC",

CALCULATE(

sum('Targets per week'[HC]),

'Targets per week', 'Targets per week'[Week number] = DW),

if(SELECTEDVALUE([channel]) = "FGo",

CALCULATE(

sum('Targets per week'[FGo]),

'Targets per week', 'Targets per week'[Week number] = DW),

CALCULATE(

sum('Targets per week'[HC]) + sum('Targets per week'[FGo]),

'Targets per week', 'Targets per week'[Week number] =DW)

)))

 

here based on week selected from a slicer respective  DW is calculated and is passed to below return condition. but in DW variable i'm hardcoding the week number from slicer  but there i need to pass dynamically has week keeps on updating. Hope anybody helps and point me in right direction.

 

Thanks in advance and regards!

1 REPLY 1
lbendlin
Super User
Super User

You need to use a YearWeek value, or better yet a Date value (divided by 7 if you want), otherwise your logic will break at the year cutover.

 

Best solution is to have a Calendar table with yearweek column.

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.