Forum Discussion
sort by within this week
- 5 years ago
Hi, Anonymous
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
Table:
You may create a measure as below. Today is 11/16/2020. You may remove '-1' to get the result for current week.
Visual Control = var d = SELECTEDVALUE('Table'[Date]) var y = YEAR(d) var wn = WEEKNUM(d,2) return IF( y=YEAR(TODAY())&&wn=WEEKNUM(TODAY(),2)-1, 1,0 )Then you need to put the measure in the visual level filter to display the result.
Best Regards
Allan
If this post helps,then consider Accepting it as the solution to help other members find it faster.
Hi, Anonymous
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
Table:
You may create a measure as below. Today is 11/16/2020. You may remove '-1' to get the result for current week.
Visual Control =
var d = SELECTEDVALUE('Table'[Date])
var y = YEAR(d)
var wn = WEEKNUM(d,2)
return
IF(
y=YEAR(TODAY())&&wn=WEEKNUM(TODAY(),2)-1,
1,0
)
Then you need to put the measure in the visual level filter to display the result.
Best Regards
Allan
If this post helps,then consider Accepting it as the solution to help other members find it faster.